Browse Source

需归模块完善

Initial-inspection
zth 8 months ago
parent
commit
a1bc49f49a
  1. 2
      jwtech-admin-page/.gitignore
  2. 22
      jwtech-admin-page/src/router/index.js
  3. 4
      jwtech-admin-page/vue.config.js
  4. 114
      jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiEngineeringEvaluationContenController.java
  5. 114
      jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiEngineeringSettlementController.java
  6. 114
      jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiProjectFinalAccountsFileController.java
  7. 73
      jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiEngineeringEvaluationConten.java
  8. 73
      jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiEngineeringSettlement.java
  9. 73
      jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiProjectFinalAccountsFile.java
  10. 16
      jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiEngineeringEvaluationContenMapper.java
  11. 16
      jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiEngineeringSettlementMapper.java
  12. 16
      jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiProjectFinalAccountsFileMapper.java
  13. 17
      jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiEngineeringEvaluationContenService.java
  14. 17
      jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiEngineeringSettlementService.java
  15. 17
      jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiProjectFinalAccountsFileService.java

2
jwtech-admin-page/.gitignore

@ -1,6 +1,6 @@
.DS_Store
node_modules/
dist/
dist-99/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

22
jwtech-admin-page/src/router/index.js

@ -196,7 +196,21 @@ export const constantRoutes = [
meta: { title: '修改生成配置' }
}
]
}
},
{
path: '/pointPolymerization',
component: Layout,
hidden: false,
redirect: 'noredirect',
children: [
{
path: 'pointPolymerizationMap',
component: (resolve) => require(['@/views/pointPolymerization/index'], resolve),
name: 'pointPolymerizationMap',
meta: { title: '点聚合', icon: 'user' }
}
]
},
]
const router = new Router({
@ -241,7 +255,7 @@ router.beforeEach((to, from, next) => {
// if (to.query.token) {
// setToken(to.query.token);
// }
// next()
// next()
// }
else if (from.path === '/login' && to.path !== '/legalLinkProject' && to.path !== '/welcome') {
// console.log(54546486,isLegal());
@ -253,11 +267,11 @@ router.beforeEach((to, from, next) => {
next("/welcome")
}
})
} else if (from.path === '/legalLinkProject' && to.path === '/login') {
} else if (from.path === '/legalLinkProject' && to.path === '/login') {
// console.log(6666666);
removeToken()
// next("/login")
next()
next()
} else {
next() // 放行
}

4
jwtech-admin-page/vue.config.js

@ -33,7 +33,7 @@ module.exports = {
devServer: {
// host: '0.0.0.0',
// host: '192.168.1.104',
host: '127.0.0.1',
host: '192.168.2.108',
// host: '192.168.2.107',
port: 80,
open: true,
@ -43,7 +43,7 @@ module.exports = {
// target: "http://127.0.0.1:18082",
// target: "http://192.168.2.108:18080",
// target: "http://192.168.2.103:18082",
target: "http://127.0.0.1:18082",
target: "http://192.168.255.62:18082",
// target: "http://192.168.2.108:18080",
// target: "http://192.168.1.20:8084",
changeOrigin: true,

114
jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiEngineeringEvaluationContenController.java

@ -0,0 +1,114 @@
package com.kms.build.controller;
import java.util.Arrays;
import java.util.List;
import com.jianwei.common.core.controller.BaseController;
import com.jianwei.common.core.domain.SearchParam;
import com.jianwei.common.utils.poi.ExcelUtil;
import com.kms.common.utils.BaseEntityUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.jianwei.common.mybaitsplus.BeanToWrapper;
import com.jianwei.common.annotation.Log;
import com.jianwei.common.core.domain.AjaxResult;
import com.jianwei.common.enums.BusinessType;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringEvaluationConten;
import com.kms.build.service.BsSgcJsjdBuiEngineeringEvaluationContenService;
/**
* 工程建设期间评价Controller
*
* @author kms
* @date 2024-09-05
*/
@RestController
@RequestMapping("/build/conten")
@Api(tags = "工程建设期间评价")
public class BsSgcJsjdBuiEngineeringEvaluationContenController extends BaseController
{
@Autowired
private BsSgcJsjdBuiEngineeringEvaluationContenService bsSgcJsjdBuiEngineeringEvaluationContenService;
/**
* 查询工程建设期间评价列表
*/
@PostMapping("/list")
@ApiOperation("工程建设期间评价列表")
public IPage list(@RequestBody SearchParam<BsSgcJsjdBuiEngineeringEvaluationConten> sp)
{
return bsSgcJsjdBuiEngineeringEvaluationContenService.selectPage(sp);
}
/**
* 导出工程建设期间评价列表
*/
@Log(title = "工程建设期间评价导出", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ApiOperation("工程建设期间评价导出")
public AjaxResult export(@RequestBody BsSgcJsjdBuiEngineeringEvaluationConten bsSgcJsjdBuiEngineeringEvaluationConten)
{
List<BsSgcJsjdBuiEngineeringEvaluationConten> list = bsSgcJsjdBuiEngineeringEvaluationContenService.listByIds(bsSgcJsjdBuiEngineeringEvaluationConten.getIds());
ExcelUtil<BsSgcJsjdBuiEngineeringEvaluationConten> util = new ExcelUtil<>(BsSgcJsjdBuiEngineeringEvaluationConten.class);
return util.exportExcel(list, "conten");
}
/**
* 获取工程建设期间评价详细信息
*/
@ApiOperation(" 工程建设期间评价详情")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id)
{
return AjaxResult.success(bsSgcJsjdBuiEngineeringEvaluationContenService.getById(id));
}
/**
* 新增工程建设期间评价
*/
@Log(title = "工程建设期间评价新增", businessType = BusinessType.INSERT)
@PostMapping
@ApiOperation("工程建设期间评价新增")
public AjaxResult add(@RequestBody BsSgcJsjdBuiEngineeringEvaluationConten bsSgcJsjdBuiEngineeringEvaluationConten)
{
BaseEntityUtils.preInsert(bsSgcJsjdBuiEngineeringEvaluationConten);
return toAjax(bsSgcJsjdBuiEngineeringEvaluationContenService.save(bsSgcJsjdBuiEngineeringEvaluationConten));
}
/**
* 修改工程建设期间评价
*/
@ApiOperation("工程建设期间评价修改")
@Log(title = "工程建设期间评价修改", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody BsSgcJsjdBuiEngineeringEvaluationConten bsSgcJsjdBuiEngineeringEvaluationConten)
{
return toAjax(bsSgcJsjdBuiEngineeringEvaluationContenService.updateById(bsSgcJsjdBuiEngineeringEvaluationConten));
}
/**
* 删除工程建设期间评价
*/
@ApiOperation("工程建设期间评价删除")
@Log(title = "工程建设期间评价删除", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids)
{
return toAjax(bsSgcJsjdBuiEngineeringEvaluationContenService.removeByIds(Arrays.asList(ids)));
}
}

114
jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiEngineeringSettlementController.java

@ -0,0 +1,114 @@
package com.kms.build.controller;
import java.util.Arrays;
import java.util.List;
import com.jianwei.common.core.controller.BaseController;
import com.jianwei.common.core.domain.SearchParam;
import com.jianwei.common.utils.poi.ExcelUtil;
import com.kms.common.utils.BaseEntityUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.jianwei.common.mybaitsplus.BeanToWrapper;
import com.jianwei.common.annotation.Log;
import com.jianwei.common.core.domain.AjaxResult;
import com.jianwei.common.enums.BusinessType;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringSettlement;
import com.kms.build.service.BsSgcJsjdBuiEngineeringSettlementService;
/**
* 工程结算Controller
*
* @author kms
* @date 2024-09-05
*/
@RestController
@RequestMapping("/build/settlement")
@Api(tags = "工程结算")
public class BsSgcJsjdBuiEngineeringSettlementController extends BaseController
{
@Autowired
private BsSgcJsjdBuiEngineeringSettlementService bsSgcJsjdBuiEngineeringSettlementService;
/**
* 查询工程结算列表
*/
@PostMapping("/list")
@ApiOperation("工程结算列表")
public IPage list(@RequestBody SearchParam<BsSgcJsjdBuiEngineeringSettlement> sp)
{
return bsSgcJsjdBuiEngineeringSettlementService.selectPage(sp);
}
/**
* 导出工程结算列表
*/
@Log(title = "工程结算导出", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ApiOperation("工程结算导出")
public AjaxResult export(@RequestBody BsSgcJsjdBuiEngineeringSettlement bsSgcJsjdBuiEngineeringSettlement)
{
List<BsSgcJsjdBuiEngineeringSettlement> list = bsSgcJsjdBuiEngineeringSettlementService.listByIds(bsSgcJsjdBuiEngineeringSettlement.getIds());
ExcelUtil<BsSgcJsjdBuiEngineeringSettlement> util = new ExcelUtil<>(BsSgcJsjdBuiEngineeringSettlement.class);
return util.exportExcel(list, "settlement");
}
/**
* 获取工程结算详细信息
*/
@ApiOperation(" 工程结算详情")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id)
{
return AjaxResult.success(bsSgcJsjdBuiEngineeringSettlementService.getById(id));
}
/**
* 新增工程结算
*/
@Log(title = "工程结算新增", businessType = BusinessType.INSERT)
@PostMapping
@ApiOperation("工程结算新增")
public AjaxResult add(@RequestBody BsSgcJsjdBuiEngineeringSettlement bsSgcJsjdBuiEngineeringSettlement)
{
BaseEntityUtils.preInsert(bsSgcJsjdBuiEngineeringSettlement);
return toAjax(bsSgcJsjdBuiEngineeringSettlementService.save(bsSgcJsjdBuiEngineeringSettlement));
}
/**
* 修改工程结算
*/
@ApiOperation("工程结算修改")
@Log(title = "工程结算修改", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody BsSgcJsjdBuiEngineeringSettlement bsSgcJsjdBuiEngineeringSettlement)
{
return toAjax(bsSgcJsjdBuiEngineeringSettlementService.updateById(bsSgcJsjdBuiEngineeringSettlement));
}
/**
* 删除工程结算
*/
@ApiOperation("工程结算删除")
@Log(title = "工程结算删除", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids)
{
return toAjax(bsSgcJsjdBuiEngineeringSettlementService.removeByIds(Arrays.asList(ids)));
}
}

114
jwtech-system/src/main/java/com/kms/build/controller/BsSgcJsjdBuiProjectFinalAccountsFileController.java

@ -0,0 +1,114 @@
package com.kms.build.controller;
import java.util.Arrays;
import java.util.List;
import com.jianwei.common.core.controller.BaseController;
import com.jianwei.common.core.domain.SearchParam;
import com.jianwei.common.utils.poi.ExcelUtil;
import com.kms.common.utils.BaseEntityUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.jianwei.common.mybaitsplus.BeanToWrapper;
import com.jianwei.common.annotation.Log;
import com.jianwei.common.core.domain.AjaxResult;
import com.jianwei.common.enums.BusinessType;
import com.kms.build.domain.BsSgcJsjdBuiProjectFinalAccountsFile;
import com.kms.build.service.BsSgcJsjdBuiProjectFinalAccountsFileService;
/**
* 项目决算Controller
*
* @author kms
* @date 2024-09-05
*/
@RestController
@RequestMapping("/build/accounting")
@Api(tags = "项目决算")
public class BsSgcJsjdBuiProjectFinalAccountsFileController extends BaseController
{
@Autowired
private BsSgcJsjdBuiProjectFinalAccountsFileService bsSgcJsjdBuiProjectFinalAccountsFileService;
/**
* 查询项目决算列表
*/
@PostMapping("/list")
@ApiOperation("项目决算列表")
public IPage list(@RequestBody SearchParam<BsSgcJsjdBuiProjectFinalAccountsFile> sp)
{
return bsSgcJsjdBuiProjectFinalAccountsFileService.selectPage(sp);
}
/**
* 导出项目决算列表
*/
@Log(title = "项目决算导出", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ApiOperation("项目决算导出")
public AjaxResult export(@RequestBody BsSgcJsjdBuiProjectFinalAccountsFile bsSgcJsjdBuiProjectFinalAccountsFile)
{
List<BsSgcJsjdBuiProjectFinalAccountsFile> list = bsSgcJsjdBuiProjectFinalAccountsFileService.listByIds(bsSgcJsjdBuiProjectFinalAccountsFile.getIds());
ExcelUtil<BsSgcJsjdBuiProjectFinalAccountsFile> util = new ExcelUtil<>(BsSgcJsjdBuiProjectFinalAccountsFile.class);
return util.exportExcel(list, "accounting");
}
/**
* 获取项目决算详细信息
*/
@ApiOperation(" 项目决算详情")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id)
{
return AjaxResult.success(bsSgcJsjdBuiProjectFinalAccountsFileService.getById(id));
}
/**
* 新增项目决算
*/
@Log(title = "项目决算新增", businessType = BusinessType.INSERT)
@PostMapping
@ApiOperation("项目决算新增")
public AjaxResult add(@RequestBody BsSgcJsjdBuiProjectFinalAccountsFile bsSgcJsjdBuiProjectFinalAccountsFile)
{
BaseEntityUtils.preInsert(bsSgcJsjdBuiProjectFinalAccountsFile);
return toAjax(bsSgcJsjdBuiProjectFinalAccountsFileService.save(bsSgcJsjdBuiProjectFinalAccountsFile));
}
/**
* 修改项目决算
*/
@ApiOperation("项目决算修改")
@Log(title = "项目决算修改", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody BsSgcJsjdBuiProjectFinalAccountsFile bsSgcJsjdBuiProjectFinalAccountsFile)
{
return toAjax(bsSgcJsjdBuiProjectFinalAccountsFileService.updateById(bsSgcJsjdBuiProjectFinalAccountsFile));
}
/**
* 删除项目决算
*/
@ApiOperation("项目决算删除")
@Log(title = "项目决算删除", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids)
{
return toAjax(bsSgcJsjdBuiProjectFinalAccountsFileService.removeByIds(Arrays.asList(ids)));
}
}

73
jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiEngineeringEvaluationConten.java

@ -0,0 +1,73 @@
package com.kms.build.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jianwei.common.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.jianwei.common.core.domain.BaseEntity;
/**
* 工程建设期间评价对象 bs_sgc_jsjd_bui_engineering_evaluation_conten
*
* @author kms
* @date 2024-09-05
*/
@TableName("bs_sgc_jsjd_bui_engineering_evaluation_conten")
@Data
@ApiModel("工程建设期间评价")
public class BsSgcJsjdBuiEngineeringEvaluationConten extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 标段 */
@Excel(name = "标段")
@ApiModelProperty("标段")
private String sectionName;
/** 所属项目 */
@Excel(name = "所属项目")
@ApiModelProperty("所属项目")
private String projectName;
/** 标段项目编码 */
@Excel(name = "标段项目编码")
@ApiModelProperty("标段项目编码")
private String proCode;
/** 项目法人 */
@Excel(name = "项目法人")
@ApiModelProperty("项目法人")
private String projectLegal;
/** 标段编码 */
@Excel(name = "标段编码")
@ApiModelProperty("标段编码")
private String sectionCode;
/** 项目编号 */
@Excel(name = "项目编号")
@ApiModelProperty("项目编号")
private String proNo;
/** 评价内容附件上传 */
@Excel(name = "评价内容附件上传")
@ApiModelProperty("评价内容附件上传")
private String evaluationContentFile;
/** 创建人 */
@Excel(name = "创建人")
@ApiModelProperty("创建人")
private String createUid;
/** 更新人 */
@Excel(name = "更新人")
@ApiModelProperty("更新人")
private String updateUid;
}

73
jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiEngineeringSettlement.java

@ -0,0 +1,73 @@
package com.kms.build.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jianwei.common.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.jianwei.common.core.domain.BaseEntity;
/**
* 工程结算对象 bs_sgc_jsjd_bui_engineering_settlement
*
* @author kms
* @date 2024-09-05
*/
@TableName("bs_sgc_jsjd_bui_engineering_settlement")
@Data
@ApiModel("工程结算")
public class BsSgcJsjdBuiEngineeringSettlement extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 标段 */
@Excel(name = "标段")
@ApiModelProperty("标段")
private String sectionName;
/** 所属项目 */
@Excel(name = "所属项目")
@ApiModelProperty("所属项目")
private String projectName;
/** 标段项目编码 */
@Excel(name = "标段项目编码")
@ApiModelProperty("标段项目编码")
private String proCode;
/** 项目法人 */
@Excel(name = "项目法人")
@ApiModelProperty("项目法人")
private String projectLegal;
/** 标段编码 */
@Excel(name = "标段编码")
@ApiModelProperty("标段编码")
private String sectionCode;
/** 项目编号 */
@Excel(name = "项目编号")
@ApiModelProperty("项目编号")
private String proNo;
/** 工程结算附件上传 */
@Excel(name = "工程结算附件上传")
@ApiModelProperty("工程结算附件上传")
private String engineeringSettlementFile;
/** 创建人 */
@Excel(name = "创建人")
@ApiModelProperty("创建人")
private String createUid;
/** 更新人 */
@Excel(name = "更新人")
@ApiModelProperty("更新人")
private String updateUid;
}

73
jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiProjectFinalAccountsFile.java

@ -0,0 +1,73 @@
package com.kms.build.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jianwei.common.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.jianwei.common.core.domain.BaseEntity;
/**
* 项目决算对象 bs_sgc_jsjd_bui_project_final_accounts_file
*
* @author kms
* @date 2024-09-05
*/
@TableName("bs_sgc_jsjd_bui_project_final_accounts_file")
@Data
@ApiModel("项目决算")
public class BsSgcJsjdBuiProjectFinalAccountsFile extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 标段 */
@Excel(name = "标段")
@ApiModelProperty("标段")
private String sectionName;
/** 所属项目 */
@Excel(name = "所属项目")
@ApiModelProperty("所属项目")
private String projectName;
/** 标段项目编码 */
@Excel(name = "标段项目编码")
@ApiModelProperty("标段项目编码")
private String proCode;
/** 项目法人 */
@Excel(name = "项目法人")
@ApiModelProperty("项目法人")
private String projectLegal;
/** 标段编码 */
@Excel(name = "标段编码")
@ApiModelProperty("标段编码")
private String sectionCode;
/** 项目编号 */
@Excel(name = "项目编号")
@ApiModelProperty("项目编号")
private String proNo;
/** 项目决算附件上传 */
@Excel(name = "项目决算附件上传")
@ApiModelProperty("项目决算附件上传")
private String completionFinalFile;
/** 创建人 */
@Excel(name = "创建人")
@ApiModelProperty("创建人")
private String createUid;
/** 更新人 */
@Excel(name = "更新人")
@ApiModelProperty("更新人")
private String updateUid;
}

16
jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiEngineeringEvaluationContenMapper.java

@ -0,0 +1,16 @@
package com.kms.build.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringEvaluationConten;
/**
* 工程建设期间评价Mapper接口
*
* @author kms
* @date 2024-09-05
*/
@Repository
public interface BsSgcJsjdBuiEngineeringEvaluationContenMapper extends BaseMapper<BsSgcJsjdBuiEngineeringEvaluationConten> {
}

16
jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiEngineeringSettlementMapper.java

@ -0,0 +1,16 @@
package com.kms.build.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringSettlement;
/**
* 工程结算Mapper接口
*
* @author kms
* @date 2024-09-05
*/
@Repository
public interface BsSgcJsjdBuiEngineeringSettlementMapper extends BaseMapper<BsSgcJsjdBuiEngineeringSettlement> {
}

16
jwtech-system/src/main/java/com/kms/build/mapper/BsSgcJsjdBuiProjectFinalAccountsFileMapper.java

@ -0,0 +1,16 @@
package com.kms.build.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kms.build.domain.BsSgcJsjdBuiProjectFinalAccountsFile;
/**
* 项目决算Mapper接口
*
* @author kms
* @date 2024-09-05
*/
@Repository
public interface BsSgcJsjdBuiProjectFinalAccountsFileMapper extends BaseMapper<BsSgcJsjdBuiProjectFinalAccountsFile> {
}

17
jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiEngineeringEvaluationContenService.java

@ -0,0 +1,17 @@
package com.kms.build.service;
import org.springframework.stereotype.Service;
import com.jianwei.common.core.service.BaseService;
import com.kms.build.mapper.BsSgcJsjdBuiEngineeringEvaluationContenMapper;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringEvaluationConten;
/**
* 工程建设期间评价Service接口
*
* @author kms
* @date 2024-09-05
*/
@Service
public class BsSgcJsjdBuiEngineeringEvaluationContenService extends BaseService<BsSgcJsjdBuiEngineeringEvaluationContenMapper, BsSgcJsjdBuiEngineeringEvaluationConten>{
}

17
jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiEngineeringSettlementService.java

@ -0,0 +1,17 @@
package com.kms.build.service;
import org.springframework.stereotype.Service;
import com.jianwei.common.core.service.BaseService;
import com.kms.build.mapper.BsSgcJsjdBuiEngineeringSettlementMapper;
import com.kms.build.domain.BsSgcJsjdBuiEngineeringSettlement;
/**
* 工程结算Service接口
*
* @author kms
* @date 2024-09-05
*/
@Service
public class BsSgcJsjdBuiEngineeringSettlementService extends BaseService<BsSgcJsjdBuiEngineeringSettlementMapper, BsSgcJsjdBuiEngineeringSettlement>{
}

17
jwtech-system/src/main/java/com/kms/build/service/BsSgcJsjdBuiProjectFinalAccountsFileService.java

@ -0,0 +1,17 @@
package com.kms.build.service;
import org.springframework.stereotype.Service;
import com.jianwei.common.core.service.BaseService;
import com.kms.build.mapper.BsSgcJsjdBuiProjectFinalAccountsFileMapper;
import com.kms.build.domain.BsSgcJsjdBuiProjectFinalAccountsFile;
/**
* 项目决算Service接口
*
* @author kms
* @date 2024-09-05
*/
@Service
public class BsSgcJsjdBuiProjectFinalAccountsFileService extends BaseService<BsSgcJsjdBuiProjectFinalAccountsFileMapper, BsSgcJsjdBuiProjectFinalAccountsFile>{
}
Loading…
Cancel
Save