From 278b9607cb14616d1c37ee5f6bcf4190bfe5e430 Mon Sep 17 00:00:00 2001 From: Augcl <17674666882@163.com> Date: Sat, 12 Oct 2024 20:53:44 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E6=B7=BB=E5=8A=A0=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1=202=E3=80=81Shiro=E8=AE=BE=E7=BD=AE(?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=A0=A1=E9=AA=8C=E6=94=BE=E5=BC=80)=203?= =?UTF-8?q?=E3=80=81Swagger=E8=AE=BE=E7=BD=AE(=E6=8E=A5=E5=8F=A3=E7=94=9F?= =?UTF-8?q?=E6=88=90=E6=96=87=E6=A1=A3=E6=94=BE=E5=BC=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/uiDesigner.xml | 124 ++++++++++ .../main/java/org/jeecg/config/Swagger2Config.java | 3 +- .../java/org/jeecg/config/shiro/ShiroConfig.java | 3 + .../api/employController/BossApiController.java | 61 +++++ .../api/employController/CommonApiController.java | 254 +++++++++++++++++++++ .../employController/EmployeeApiController.java | 92 ++++++++ .../jeecg/modules/apiService/BossApiService.java | 7 + .../jeecg/modules/apiService/CommonApiService.java | 10 + .../modules/apiService/EmployeeApiService.java | 10 + .../apiService/impl/BossApiServiceImpl.java | 13 ++ .../apiService/impl/CommonApiServiceImpl.java | 13 ++ .../apiService/impl/EmployeeApiServiceImpl.java | 13 ++ 12 files changed, 602 insertions(+), 1 deletion(-) create mode 100644 .idea/uiDesigner.xml create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/BossApiController.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/CommonApiController.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/EmployeeApiController.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/BossApiService.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/CommonApiService.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/EmployeeApiService.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/BossApiServiceImpl.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/CommonApiServiceImpl.java create mode 100644 jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/EmployeeApiServiceImpl.java diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger2Config.java b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger2Config.java index 83cecf2..52ddc03 100644 --- a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger2Config.java +++ b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger2Config.java @@ -68,7 +68,8 @@ public class Swagger2Config implements WebMvcConfigurer { .apiInfo(apiInfo()) .select() //此包路径下的类,才生成接口文档 - .apis(RequestHandlerSelectors.basePackage("org.jeecg.modules.api")) + //.apis(RequestHandlerSelectors.basePackage("org.jeecg.modules.api")) + .apis(RequestHandlerSelectors.basePackage("org.jeecg.modules.api.employController")) //加了ApiOperation注解的类,才生成接口文档 .apis(RequestHandlerSelectors.withClassAnnotation(RestController.class)) .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) diff --git a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/shiro/ShiroConfig.java b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/shiro/ShiroConfig.java index ac70b7f..e967bee 100644 --- a/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/shiro/ShiroConfig.java +++ b/jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/config/shiro/ShiroConfig.java @@ -72,6 +72,9 @@ public class ShiroConfig { } } + //特易招 + filterChainDefinitionMap.put("/api/*", "anon"); //api相关接口全部放开 + filterChainDefinitionMap.put("/sys/oss/file/upload", "anon"); //图片上传验证放开 filterChainDefinitionMap.put("/sys/common/upload", "anon"); //图片上传验证放开 filterChainDefinitionMap.put("/sys/cas/client/validateLogin", "anon"); //cas验证登录 diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/BossApiController.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/BossApiController.java new file mode 100644 index 0000000..37617e3 --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/BossApiController.java @@ -0,0 +1,61 @@ +package org.jeecg.modules.api.employController; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.BossApiService; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import javax.annotation.Resource; + +@Api(tags="小程序-Boss相关接口") +@RestController +@RequestMapping("/api/boss") +@Slf4j +public class BossApiController { + /******************************Boss-首页相关接口********************************************/ + //首页相关接口 + @Resource + private BossApiService bossApiService; + + //首页-根据岗位查询找活信息 + @ApiOperation(value="首页-根据岗位查询找活信息", notes="首页-根据岗位查询找活信息") + @RequestMapping(value = "/queryJobListByName", method = {RequestMethod.GET}) + public Result queryJobListByName(String jobType){ + return bossApiService.queryJobList(); + } + + //首页-智能推荐查询找活信息 + @ApiOperation(value="首页-智能推荐查询找活信息", notes="首页-智能推荐查询找活信息") + @RequestMapping(value = "/queryJobList", method = {RequestMethod.GET}) + public Result queryJobList(){ + return null; + } + + //首页-根据Id查看找活详情 + @ApiOperation(value="首页-根据Id查看找活详情", notes="首页-根据Id查看找活详情") + @RequestMapping(value = "/queryJobById", method = {RequestMethod.GET}) + public Result queryJobById(){ + return null; + } + + //首页-根据Id查看简历详情 + @ApiOperation(value="首页-根据Id查看简历详情", notes="首页-根据Id查看简历详情") + @RequestMapping(value = "/queryCVById", method = {RequestMethod.GET}) + public Result queryCVById(){ + return null; + } + + //首页-发布招工 + @ApiOperation(value="首页-发布招工", notes="首页-发布招工") + @RequestMapping(value = "/addJob", method = {RequestMethod.POST}) + public Result addJob(){ + return null; + } + + + +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/CommonApiController.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/CommonApiController.java new file mode 100644 index 0000000..5bb266b --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/CommonApiController.java @@ -0,0 +1,254 @@ +package org.jeecg.modules.api.employController; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.CommonApiService; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import javax.annotation.Resource; + +@Api(tags="小程序-公共接口") +@RestController +@RequestMapping("/api/common") +@Slf4j +public class CommonApiController { + /******************************公共接口********************************************/ + @Resource + private CommonApiService commonApiService; + + /***************首页***************/ + //获取banner图列表 + @ApiOperation(value="首页-获取banner图列表", notes="0-首页 1-会员中心") + @RequestMapping(value = "/queryBannerList", method = {RequestMethod.GET}) + public Result queryBannerList(String bannerCategoryType){ + return commonApiService.queryBannerList(bannerCategoryType); + } + + //获取工种列表 + @ApiOperation(value="首页-获取工种列表", notes="首页-获取工种列表") + @RequestMapping(value = "/queryJobTypeList", method = {RequestMethod.GET}) + public Result queryJobTypeList(){ + return null; + } + + //获取地址列表 + @ApiOperation(value="首页-获取地址列表", notes="首页-获取地址列表") + @RequestMapping(value = "/queryAddressList", method = {RequestMethod.GET}) + public Result queryAddressList(){ + return null; + } + + /***************记工记账***************/ + //个人记工-新建账本 + @ApiOperation(value="个人记工-新建账本", notes="个人记工-新建账本") + @RequestMapping(value = "/addBill", method = {RequestMethod.POST}) + public Result addBill(){ + return null; + } + + //个人记工-全年收支 + @ApiOperation(value="个人记工-全年收支", notes="个人记工-全年收支") + @RequestMapping(value = "/queryBill", method = {RequestMethod.GET}) + public Result queryBill(){ + return null; + } + + //个人记工-技工问题 + @ApiOperation(value="个人记工-技工问题", notes="个人记工-技工问题") + @RequestMapping(value = "/addQuestion", method = {RequestMethod.POST}) + public Result addQuestion(){ + return null; + } + + //个人记工-在建项目 + @ApiOperation(value="个人记工-在建项目", notes="个人记工-在建项目") + @RequestMapping(value = "/queryStrartJobList", method = {RequestMethod.GET}) + public Result queryStrartJobList(){ + return null; + } + + //个人记工-结束项目 + @ApiOperation(value="个人记工-结束项目", notes="个人记工-结束项目") + @RequestMapping(value = "/queryEndJobList", method = {RequestMethod.GET}) + public Result queryEndJobList(){ + return null; + } + + //班组记工-新建账本 + @ApiOperation(value="班组记工-新建账本", notes="班组记工-新建账本") + @RequestMapping(value = "/addBills", method = {RequestMethod.POST}) + public Result addBills(){ + return null; + } + + //班组记工-技工问题 + @ApiOperation(value="班组记工-技工问题", notes="班组记工-技工问题") + @RequestMapping(value = "/addQuestions", method = {RequestMethod.POST}) + public Result addQuestions(){ + return null; + } + + //班组记工-在建项目 + @ApiOperation(value="班组记工-在建项目", notes="班组记工-在建项目") + @RequestMapping(value = "/queryStrartJobLists", method = {RequestMethod.GET}) + public Result queryStrartJobLists(){ + return null; + } + + //班组记工-结束项目 + @ApiOperation(value="班组记工-结束项目", notes="班组记工-结束项目") + @RequestMapping(value = "/queryEndJobLists", method = {RequestMethod.GET}) + public Result queryEndJobLists(){ + return null; + } + + /***************会员中心***************/ + //会员中心-正式积分||临时积分||积分记录 + @ApiOperation(value="会员中心-正式积分||临时积分||积分记录", notes="会员中心-正式积分||临时积分||积分记录") + @RequestMapping(value = "/queryScore", method = {RequestMethod.GET}) + public Result queryScore(){ + return null; + } + + //会员中心-我的收藏 + @ApiOperation(value="会员中心-我的收藏", notes="会员中心-我的收藏") + @RequestMapping(value = "/queryCollection", method = {RequestMethod.GET}) + public Result queryCollection(){ + return null; + } + + //会员中心-联系记录-我看过谁(我的找活) + @ApiOperation(value="会员中心-联系记录-我看过谁(我的找活)", notes="会员中心-联系记录-我看过谁(我的找活)") + @RequestMapping(value = "/queryWatchWho", method = {RequestMethod.GET}) + public Result queryWatchWho(){ + return null; + } + + //会员中心-联系记录-我看过谁(我的找活) + @ApiOperation(value="会员中心-联系记录-谁看过我(谁看过我的简历)", notes="会员中心-联系记录-谁看过我(谁看过我的简历)") + @RequestMapping(value = "/queryWatchMe", method = {RequestMethod.GET}) + public Result queryWatchMe(){ + return null; + } + + //我的服务-会员充值(开通VIP) + @ApiOperation(value="我的服务-会员充值(开通VIP)", notes="我的服务-会员充值(开通VIP)") + @RequestMapping(value = "/addRecharge", method = {RequestMethod.POST}) + public Result addRecharge(){ + return null; + } + + //我的服务-获取积分-充值积分 + @ApiOperation(value="我的服务-获取积分-充值积分", notes="我的服务-获取积分-充值积分") + @RequestMapping(value = "/addScoreByRecharge", method = {RequestMethod.POST}) + public Result addScoreByRecharge(){ + return null; + } + + //我的服务-获取积分-邀请工友获取积分 + @ApiOperation(value="我的服务-获取积分-邀请工友获取积分", notes="我的服务-获取积分-邀请工友获取积分") + @RequestMapping(value = "/addScoreByShare", method = {RequestMethod.POST}) + public Result addScoreByShare(){ + return null; + } + + //我的服务-个人实名认证 + @ApiOperation(value="我的服务-个人实名认证", notes="我的服务-个人实名认证") + @RequestMapping(value = "/validatePerson", method = {RequestMethod.POST}) + public Result validatePerson(){ + return null; + } + + //我的服务-企业实名认证 + @ApiOperation(value="我的服务-企业实名认证", notes="我的服务-企业实名认证") + @RequestMapping(value = "/validateCompany", method = {RequestMethod.POST}) + public Result validateCompany(){ + return null; + } + + //我的服务-兑换码 + @ApiOperation(value="我的服务-兑换码", notes="我的服务-兑换码") + @RequestMapping(value = "/addExchange", method = {RequestMethod.POST}) + public Result addExchange(){ + return null; + } + + //我的服务-电子合同 + @ApiOperation(value="电子合同-获取电子合同列表", notes="电子合同-获取电子合同列表") + @RequestMapping(value = "/queryContractList", method = {RequestMethod.GET}) + public Result queryContractList(){ + return null; + } + + //我的服务-电子合同 + @ApiOperation(value="电子合同-根据id查询电子合同详情", notes="电子合同-根据id查询电子合同详情") + @RequestMapping(value = "/queryContracById", method = {RequestMethod.GET}) + public Result queryContracById(){ + return null; + } + + /***************设置与帮助***************/ + //系统设置-切换账号 + @ApiOperation(value="系统设置-切换账号", notes="系统设置-切换账号") + @RequestMapping(value = "/changeAccount", method = {RequestMethod.GET}) + public Result changeAccount(){ + return null; + } + + //系统设置-修改密码 + @ApiOperation(value="系统设置-修改密码", notes="系统设置-修改密码") + @RequestMapping(value = "/updatePassword", method = {RequestMethod.GET}) + public Result updatePassword(){ + return null; + } + + //系统设置-清理缓存 + @ApiOperation(value="系统设置-清理缓存", notes="系统设置-清理缓存") + @RequestMapping(value = "/clearCache", method = {RequestMethod.GET}) + public Result clearCache(){ + return null; + } + + //系统设置-版本更新 + @ApiOperation(value="系统设置-版本更新", notes="系统设置-版本更新") + @RequestMapping(value = "/updateVersion", method = {RequestMethod.GET}) + public Result updateVersion(){ + return null; + } + + //系统设置-退出登录 + @ApiOperation(value="系统设置-退出登录", notes="系统设置-退出登录") + @RequestMapping(value = "/loginOut", method = {RequestMethod.GET}) + public Result loginOut(){ + return null; + } + + //系统设置-切换身份 + @ApiOperation(value="系统设置-切换身份", notes="系统设置-切换身份") + @RequestMapping(value = "/changeRole", method = {RequestMethod.GET}) + public Result changeRole(){ + return null; + } + + //帮助与反馈 + @ApiOperation(value="帮助与反馈", notes="帮助与反馈") + @RequestMapping(value = "/help", method = {RequestMethod.GET}) + public Result help(){ + return null; + } + + //关于本程序 + @ApiOperation(value="关于本程序", notes="关于本程序") + @RequestMapping(value = "/aboutUs", method = {RequestMethod.GET}) + public Result aboutUs(){ + return null; + } + + + + +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/EmployeeApiController.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/EmployeeApiController.java new file mode 100644 index 0000000..0311d3f --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/employController/EmployeeApiController.java @@ -0,0 +1,92 @@ +package org.jeecg.modules.api.employController; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.EmployeeApiService; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import javax.annotation.Resource; + +@Api(tags="小程序-Employee相关接口") +@RestController +@RequestMapping("/api/employee") +@Slf4j +public class EmployeeApiController { + /******************************职场人-首页相关接口********************************************/ + //首页相关接口 + @Resource + private EmployeeApiService employeeApiService; + + + /***************首页***************/ + //首页-根据岗位/公司名称模糊查询工作信息 + @ApiOperation(value="首页-根据岗位/公司名称模糊查询工作信息", notes="首页-根据岗位/公司名称模糊查询工作信息") + @RequestMapping(value = "/queryJobListByName", method = {RequestMethod.GET}) + public Result queryJobListByName(String jobType, String companyName){ + return employeeApiService.queryJobList(); + } + + //首页-根据地址模糊查询工作信息 + @ApiOperation(value="首页-根据地址模糊查询工作信息", notes="首页-根据地址模糊查询工作信息") + @RequestMapping(value = "/queryJobListByAddress", method = {RequestMethod.GET}) + public Result queryJobListByAddress(){ + return null; + } + + //首页-根据工种类型查询工作信息 + @ApiOperation(value="首页-根据工种类型查询工作信息", notes="首页-根据工种类型查询工作信息") + @RequestMapping(value = "/queryJobListByType", method = {RequestMethod.GET}) + public Result queryJobListByType(){ + return null; + } + + //首页-智能推荐查询工作信息 + @ApiOperation(value="首页-智能推荐查询工作信息", notes="首页-智能推荐查询工作信息") + @RequestMapping(value = "/queryJobList", method = {RequestMethod.GET}) + public Result queryJobList(){ + return null; + } + + //首页-发布找活 + @ApiOperation(value="首页-发布找活", notes="首页-发布找活") + @RequestMapping(value = "/addJob", method = {RequestMethod.POST}) + public Result addJob(){ + return null; + } + + //首页-根据Id查看工作详情 + @ApiOperation(value="首页-根据Id查看工作详情", notes="首页-根据Id查看工作详情") + @RequestMapping(value = "/queryJobById", method = {RequestMethod.GET}) + public Result queryJobById(){ + return null; + } + + /***************考证咨询***************/ + //考证咨询-证书查询 + @ApiOperation(value="考证咨询-证书查询", notes="考证咨询-证书查询") + @RequestMapping(value = "/queryCert", method = {RequestMethod.GET}) + public Result queryCert(){ + return null; + } + + //考证咨询-提交报名材料 + @ApiOperation(value="考证咨询-提交报名材料", notes="考证咨询-提交报名材料") + @RequestMapping(value = "/addMaterial", method = {RequestMethod.POST}) + public Result addMaterial(){ + return null; + } + + //考证咨询-联系客服 + @ApiOperation(value="考证咨询-联系客服", notes="考证咨询-联系客服") + @RequestMapping(value = "/queryWorker", method = {RequestMethod.GET}) + public Result queryWorker(){ + return null; + } + + + +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/BossApiService.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/BossApiService.java new file mode 100644 index 0000000..128aa06 --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/BossApiService.java @@ -0,0 +1,7 @@ +package org.jeecg.modules.apiService; + +import org.jeecg.common.api.vo.Result; + +public interface BossApiService { + public Result queryJobList(); +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/CommonApiService.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/CommonApiService.java new file mode 100644 index 0000000..ee61619 --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/CommonApiService.java @@ -0,0 +1,10 @@ +package org.jeecg.modules.apiService; + +import org.jeecg.common.api.vo.Result; + +public interface CommonApiService { + + /***************首页***************/ + //获取banner图列表 + public Result queryBannerList(String bannerCategoryId); +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/EmployeeApiService.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/EmployeeApiService.java new file mode 100644 index 0000000..0c39598 --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/EmployeeApiService.java @@ -0,0 +1,10 @@ +package org.jeecg.modules.apiService; + +import org.jeecg.common.api.vo.Result; + +public interface EmployeeApiService { + + /***************首页***************/ + //首页-根据岗位/公司名称模糊查询工作信息 + public Result queryJobList(); +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/BossApiServiceImpl.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/BossApiServiceImpl.java new file mode 100644 index 0000000..cffa24f --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/BossApiServiceImpl.java @@ -0,0 +1,13 @@ +package org.jeecg.modules.apiService.impl; + +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.BossApiService; +import org.springframework.stereotype.Service; + +@Service +public class BossApiServiceImpl implements BossApiService { + @Override + public Result queryJobList() { + return null; + } +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/CommonApiServiceImpl.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/CommonApiServiceImpl.java new file mode 100644 index 0000000..4f634df --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/CommonApiServiceImpl.java @@ -0,0 +1,13 @@ +package org.jeecg.modules.apiService.impl; + +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.CommonApiService; +import org.springframework.stereotype.Service; + +@Service +public class CommonApiServiceImpl implements CommonApiService { + @Override + public Result queryBannerList(String bannerCategoryId) { + return null; + } +} diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/EmployeeApiServiceImpl.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/EmployeeApiServiceImpl.java new file mode 100644 index 0000000..dcf5636 --- /dev/null +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/EmployeeApiServiceImpl.java @@ -0,0 +1,13 @@ +package org.jeecg.modules.apiService.impl; + +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.apiService.EmployeeApiService; +import org.springframework.stereotype.Service; + +@Service +public class EmployeeApiServiceImpl implements EmployeeApiService { + @Override + public Result queryJobList() { + return null; + } +}