From 5ca4ab349909030e77354832287f2d6a2c80e119 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期二, 01 七月 2025 16:58:21 +0800
Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/multi_system

---
 multi-system/src/main/java/com/gkhy/exam/system/service/SysIndustryTypeService.java |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/multi-system/src/main/java/com/gkhy/exam/system/service/SysIndustryTypeService.java b/multi-system/src/main/java/com/gkhy/exam/system/service/SysIndustryTypeService.java
new file mode 100644
index 0000000..7444d61
--- /dev/null
+++ b/multi-system/src/main/java/com/gkhy/exam/system/service/SysIndustryTypeService.java
@@ -0,0 +1,20 @@
+package com.gkhy.exam.system.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.gkhy.exam.common.api.CommonPage;
+import com.gkhy.exam.common.api.CommonResult;
+import com.gkhy.exam.system.domain.CompanyIndustryType;
+
+public interface SysIndustryTypeService extends IService<CompanyIndustryType> {
+    CommonPage selectIndustryTypeList();
+
+    CommonResult insertIndustryType(CompanyIndustryType companyIndustryType);
+
+    CommonResult updateIndustryType(CompanyIndustryType companyIndustryType);
+
+    CommonResult deletedIndustryType(Integer industryId);
+
+    CommonResult selectList();
+
+
+}

--
Gitblit v1.9.2