15 changed files with 681 additions and 7 deletions
@ -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))); |
|||
} |
|||
} |
@ -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))); |
|||
} |
|||
} |
@ -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))); |
|||
} |
|||
} |
@ -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; |
|||
|
|||
} |
@ -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; |
|||
|
|||
} |
@ -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; |
|||
|
|||
} |
@ -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> { |
|||
|
|||
} |
@ -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> { |
|||
|
|||
} |
@ -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> { |
|||
|
|||
} |
@ -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>{ |
|||
|
|||
} |
@ -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>{ |
|||
|
|||
} |
@ -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…
Reference in new issue