From 99132a43bf344f2aafdd9894b0762d2eedd9767b Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期二, 01 七月 2025 17:15:25 +0800
Subject: [PATCH] 修改

---
 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