diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/BudgetPriceController.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/BudgetPriceController.java index 46f1988..f2b62b8 100644 --- a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/BudgetPriceController.java +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/BudgetPriceController.java @@ -43,7 +43,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions; * @Date: 2024-06-11 * @Version: V1.0 */ -@Api(tags="budget_price") +@Api(tags="预算价格") @RestController @RequestMapping("//budgetPrice") @Slf4j diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/CostCenterController.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/CostCenterController.java new file mode 100644 index 0000000..8e69565 --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/CostCenterController.java @@ -0,0 +1,178 @@ +package com.zzsmart.qomo.kn.cost.manage.controller; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.oConvertUtils; +import com.zzsmart.qomo.kn.cost.manage.entity.CostCenter; +import com.zzsmart.qomo.kn.cost.manage.service.ICostCenterService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.apache.shiro.authz.annotation.RequiresPermissions; + + /** + * @Description: cost_center + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Api(tags="成本中心") +@RestController +@RequestMapping("/com.zzsmart.qomo.kn.cost.manage/costCenter") +@Slf4j +public class CostCenterController extends JeecgController { + @Autowired + private ICostCenterService costCenterService; + + /** + * 分页列表查询 + * + * @param costCenter + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "cost_center-分页列表查询") + @ApiOperation(value="cost_center-分页列表查询", notes="cost_center-分页列表查询") + @GetMapping(value = "/list") + public Result> queryPageList(CostCenter costCenter, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(costCenter, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = costCenterService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param costCenter + * @return + */ + @AutoLog(value = "cost_center-添加") + @ApiOperation(value="cost_center-添加", notes="cost_center-添加") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:add") + @PostMapping(value = "/add") + public Result add(@RequestBody CostCenter costCenter) { + costCenterService.save(costCenter); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param costCenter + * @return + */ + @AutoLog(value = "cost_center-编辑") + @ApiOperation(value="cost_center-编辑", notes="cost_center-编辑") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:edit") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) + public Result edit(@RequestBody CostCenter costCenter) { + costCenterService.updateById(costCenter); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "cost_center-通过id删除") + @ApiOperation(value="cost_center-通过id删除", notes="cost_center-通过id删除") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:delete") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + costCenterService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "cost_center-批量删除") + @ApiOperation(value="cost_center-批量删除", notes="cost_center-批量删除") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:deleteBatch") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.costCenterService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + //@AutoLog(value = "cost_center-通过id查询") + @ApiOperation(value="cost_center-通过id查询", notes="cost_center-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + CostCenter costCenter = costCenterService.getById(id); + if(costCenter==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(costCenter); + } + + /** + * 导出excel + * + * @param request + * @param costCenter + */ + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:exportXls") + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, CostCenter costCenter) { + return super.exportXls(request, costCenter, CostCenter.class, "cost_center"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:cost_center:importExcel") + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, CostCenter.class); + } + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/HourRateController.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/HourRateController.java index fbcb855..abc6508 100644 --- a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/HourRateController.java +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/HourRateController.java @@ -27,7 +27,7 @@ import java.util.Arrays; * @Date: 2024-06-06 * @Version: V1.0 */ -@Api(tags="hour_rate") +@Api(tags="小时费率") @RestController @RequestMapping("//hourRate") @Slf4j diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/SapSubfactoryController.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/SapSubfactoryController.java new file mode 100644 index 0000000..c4b5a80 --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/controller/SapSubfactoryController.java @@ -0,0 +1,178 @@ +package com.zzsmart.qomo.kn.cost.manage.controller; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.oConvertUtils; +import com.zzsmart.qomo.kn.cost.manage.entity.SapSubfactory; +import com.zzsmart.qomo.kn.cost.manage.service.ISapSubfactoryService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.apache.shiro.authz.annotation.RequiresPermissions; + + /** + * @Description: sap_subfactory + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Api(tags="工厂信息") +@RestController +@RequestMapping("/com.zzsmart.qomo.kn.cost.manage/sapSubfactory") +@Slf4j +public class SapSubfactoryController extends JeecgController { + @Autowired + private ISapSubfactoryService sapSubfactoryService; + + /** + * 分页列表查询 + * + * @param sapSubfactory + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "sap_subfactory-分页列表查询") + @ApiOperation(value="sap_subfactory-分页列表查询", notes="sap_subfactory-分页列表查询") + @GetMapping(value = "/list") + public Result> queryPageList(SapSubfactory sapSubfactory, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(sapSubfactory, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = sapSubfactoryService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param sapSubfactory + * @return + */ + @AutoLog(value = "sap_subfactory-添加") + @ApiOperation(value="sap_subfactory-添加", notes="sap_subfactory-添加") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:add") + @PostMapping(value = "/add") + public Result add(@RequestBody SapSubfactory sapSubfactory) { + sapSubfactoryService.save(sapSubfactory); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param sapSubfactory + * @return + */ + @AutoLog(value = "sap_subfactory-编辑") + @ApiOperation(value="sap_subfactory-编辑", notes="sap_subfactory-编辑") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:edit") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) + public Result edit(@RequestBody SapSubfactory sapSubfactory) { + sapSubfactoryService.updateById(sapSubfactory); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "sap_subfactory-通过id删除") + @ApiOperation(value="sap_subfactory-通过id删除", notes="sap_subfactory-通过id删除") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:delete") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + sapSubfactoryService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "sap_subfactory-批量删除") + @ApiOperation(value="sap_subfactory-批量删除", notes="sap_subfactory-批量删除") + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:deleteBatch") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.sapSubfactoryService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + //@AutoLog(value = "sap_subfactory-通过id查询") + @ApiOperation(value="sap_subfactory-通过id查询", notes="sap_subfactory-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + SapSubfactory sapSubfactory = sapSubfactoryService.getById(id); + if(sapSubfactory==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(sapSubfactory); + } + + /** + * 导出excel + * + * @param request + * @param sapSubfactory + */ + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:exportXls") + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, SapSubfactory sapSubfactory) { + return super.exportXls(request, sapSubfactory, SapSubfactory.class, "sap_subfactory"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + //@RequiresPermissions("com.zzsmart.qomo.kn.cost.manage:sap_subfactory:importExcel") + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, SapSubfactory.class); + } + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/CostCenter.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/CostCenter.java new file mode 100644 index 0000000..b214b6d --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/CostCenter.java @@ -0,0 +1,55 @@ +package com.zzsmart.qomo.kn.cost.manage.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.TableLogic; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: cost_center + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Data +@TableName("cost_center") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="cost_center对象", description="cost_center") +public class CostCenter implements Serializable { + private static final long serialVersionUID = 1L; + + /**公司代码*/ + @Excel(name = "公司代码", width = 15) + @ApiModelProperty(value = "公司代码") + private String companyCode; + /**成本中心代码*/ + @Excel(name = "成本中心代码", width = 15) + @ApiModelProperty(value = "成本中心代码") + private String costCenterCode; + /**成本中心名称*/ + @Excel(name = "成本中心名称", width = 15) + @ApiModelProperty(value = "成本中心名称") + private String costCenterName; + /**成本类型*/ + @Excel(name = "成本类型", width = 15) + @ApiModelProperty(value = "成本类型") + private String costCategory; + /**状态*/ + @Excel(name = "状态", width = 15) + @ApiModelProperty(value = "状态") + private String status; +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/SapSubfactory.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/SapSubfactory.java new file mode 100644 index 0000000..79711ba --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/entity/SapSubfactory.java @@ -0,0 +1,47 @@ +package com.zzsmart.qomo.kn.cost.manage.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.TableLogic; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: sap_subfactory + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Data +@TableName("sap_subfactory") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="sap_subfactory对象", description="sap_subfactory") +public class SapSubfactory implements Serializable { + private static final long serialVersionUID = 1L; + + /**主键*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "主键") + private Integer id; + /**公司代码*/ + @Excel(name = "公司代码", width = 15) + @ApiModelProperty(value = "公司代码") + private String companyCode; + /**工厂代码*/ + @Excel(name = "工厂代码", width = 15) + @ApiModelProperty(value = "工厂代码") + private String factory; +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/CostCenterMapper.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/CostCenterMapper.java new file mode 100644 index 0000000..796d4cf --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/CostCenterMapper.java @@ -0,0 +1,17 @@ +package com.zzsmart.qomo.kn.cost.manage.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import com.zzsmart.qomo.kn.cost.manage.entity.CostCenter; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: cost_center + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +public interface CostCenterMapper extends BaseMapper { + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/SapSubfactoryMapper.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/SapSubfactoryMapper.java new file mode 100644 index 0000000..dd6af48 --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/SapSubfactoryMapper.java @@ -0,0 +1,17 @@ +package com.zzsmart.qomo.kn.cost.manage.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import com.zzsmart.qomo.kn.cost.manage.entity.SapSubfactory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: sap_subfactory + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +public interface SapSubfactoryMapper extends BaseMapper { + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/CostCenterMapper.xml b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/CostCenterMapper.xml new file mode 100644 index 0000000..107fbef --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/CostCenterMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/SapSubfactoryMapper.xml b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/SapSubfactoryMapper.xml new file mode 100644 index 0000000..3588c13 --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/mapper/xml/SapSubfactoryMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ICostCenterService.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ICostCenterService.java new file mode 100644 index 0000000..c6c9d01 --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ICostCenterService.java @@ -0,0 +1,14 @@ +package com.zzsmart.qomo.kn.cost.manage.service; + +import com.zzsmart.qomo.kn.cost.manage.entity.CostCenter; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: cost_center + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +public interface ICostCenterService extends IService { + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ISapSubfactoryService.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ISapSubfactoryService.java new file mode 100644 index 0000000..961a42a --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/ISapSubfactoryService.java @@ -0,0 +1,14 @@ +package com.zzsmart.qomo.kn.cost.manage.service; + +import com.zzsmart.qomo.kn.cost.manage.entity.SapSubfactory; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: sap_subfactory + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +public interface ISapSubfactoryService extends IService { + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/CostCenterServiceImpl.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/CostCenterServiceImpl.java new file mode 100644 index 0000000..34e9c1a --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/CostCenterServiceImpl.java @@ -0,0 +1,19 @@ +package com.zzsmart.qomo.kn.cost.manage.service.impl; + +import com.zzsmart.qomo.kn.cost.manage.entity.CostCenter; +import com.zzsmart.qomo.kn.cost.manage.mapper.CostCenterMapper; +import com.zzsmart.qomo.kn.cost.manage.service.ICostCenterService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: cost_center + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Service +public class CostCenterServiceImpl extends ServiceImpl implements ICostCenterService { + +} diff --git a/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/SapSubfactoryServiceImpl.java b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/SapSubfactoryServiceImpl.java new file mode 100644 index 0000000..e026e6e --- /dev/null +++ b/qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/service/impl/SapSubfactoryServiceImpl.java @@ -0,0 +1,19 @@ +package com.zzsmart.qomo.kn.cost.manage.service.impl; + +import com.zzsmart.qomo.kn.cost.manage.entity.SapSubfactory; +import com.zzsmart.qomo.kn.cost.manage.mapper.SapSubfactoryMapper; +import com.zzsmart.qomo.kn.cost.manage.service.ISapSubfactoryService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: sap_subfactory + * @Author: jeecg-boot + * @Date: 2024-06-11 + * @Version: V1.0 + */ +@Service +public class SapSubfactoryServiceImpl extends ServiceImpl implements ISapSubfactoryService { + +}