【同步】BOOT 和 CLOUD 的功能(mes)
parent
1e14c5c38f
commit
2eb326d62d
|
|
@ -84,7 +84,8 @@ public class MesProProcessController {
|
|||
public CommonResult<List<MesProProcessRespVO>> getProcessSimpleList() {
|
||||
List<MesProProcessDO> list = processService.getProcessListByStatus(CommonStatusEnum.ENABLE.getStatus());
|
||||
return success(convertList(list, process -> new MesProProcessRespVO()
|
||||
.setId(process.getId()).setName(process.getName()).setCode(process.getCode())));
|
||||
.setId(process.getId()).setName(process.getName()).setCode(process.getCode())
|
||||
.setAttention(process.getAttention()).setRemark(process.getRemark())));
|
||||
}
|
||||
|
||||
@GetMapping("/export-excel")
|
||||
|
|
|
|||
|
|
@ -369,9 +369,9 @@ CREATE TABLE IF NOT EXISTS "mes_qc_rqc" (
|
|||
"critical_quantity" int DEFAULT 0,
|
||||
"major_quantity" int DEFAULT 0,
|
||||
"minor_quantity" int DEFAULT 0,
|
||||
"critical_rate" decimal(5,2) DEFAULT 0.00,
|
||||
"major_rate" decimal(5,2) DEFAULT 0.00,
|
||||
"minor_rate" decimal(5,2) DEFAULT 0.00,
|
||||
"critical_rate" decimal(14,2) DEFAULT 0.00,
|
||||
"major_rate" decimal(14,2) DEFAULT 0.00,
|
||||
"minor_rate" decimal(14,2) DEFAULT 0.00,
|
||||
"creator" varchar(64) DEFAULT '',
|
||||
"create_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
"updater" varchar(64) DEFAULT '',
|
||||
|
|
|
|||
Loading…
Reference in New Issue