成本中心和工厂信息的增删改查接口
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
+178
@@ -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<CostCenter, ICostCenterService> {
|
||||
@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<IPage<CostCenter>> queryPageList(CostCenter costCenter,
|
||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||
HttpServletRequest req) {
|
||||
QueryWrapper<CostCenter> queryWrapper = QueryGenerator.initQueryWrapper(costCenter, req.getParameterMap());
|
||||
Page<CostCenter> page = new Page<CostCenter>(pageNo, pageSize);
|
||||
IPage<CostCenter> 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<String> 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<String> 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<String> 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<String> 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<CostCenter> 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);
|
||||
}
|
||||
|
||||
}
|
||||
+1
-1
@@ -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
|
||||
|
||||
+178
@@ -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<SapSubfactory, ISapSubfactoryService> {
|
||||
@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<IPage<SapSubfactory>> queryPageList(SapSubfactory sapSubfactory,
|
||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||
HttpServletRequest req) {
|
||||
QueryWrapper<SapSubfactory> queryWrapper = QueryGenerator.initQueryWrapper(sapSubfactory, req.getParameterMap());
|
||||
Page<SapSubfactory> page = new Page<SapSubfactory>(pageNo, pageSize);
|
||||
IPage<SapSubfactory> 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<String> 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<String> 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<String> 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<String> 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<SapSubfactory> 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);
|
||||
}
|
||||
|
||||
}
|
||||
+55
@@ -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;
|
||||
}
|
||||
+47
@@ -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;
|
||||
}
|
||||
+17
@@ -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<CostCenter> {
|
||||
|
||||
}
|
||||
+17
@@ -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<SapSubfactory> {
|
||||
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.zzsmart.qomo.kn.cost.manage.mapper.CostCenterMapper">
|
||||
|
||||
</mapper>
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.zzsmart.qomo.kn.cost.manage.mapper.SapSubfactoryMapper">
|
||||
|
||||
</mapper>
|
||||
+14
@@ -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<CostCenter> {
|
||||
|
||||
}
|
||||
+14
@@ -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<SapSubfactory> {
|
||||
|
||||
}
|
||||
+19
@@ -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<CostCenterMapper, CostCenter> implements ICostCenterService {
|
||||
|
||||
}
|
||||
+19
@@ -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<SapSubfactoryMapper, SapSubfactory> implements ISapSubfactoryService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user