添加监测点统计间隔

This commit is contained in:
xy
2024-12-04 17:14:37 +08:00
parent 8e4adc58d4
commit 3df2bedaa6
2 changed files with 7 additions and 1 deletions

View File

@@ -68,7 +68,8 @@ public class CsLinePOServiceImpl extends ServiceImpl<CsLinePOMapper, CsLinePO> i
.set(CsLinePO::getVolGrade,csLineParam.getVolGrade())
.set(CsLinePO::getPtRatio,csLineParam.getPtRatio())
.set(CsLinePO::getCtRatio,csLineParam.getCtRatio())
.set(CsLinePO::getConType,csLineParam.getConType());
.set(CsLinePO::getConType,csLineParam.getConType())
.set(CsLinePO::getLineInterval,csLineParam.getLineInterval());
this.update(lambdaUpdateWrapper);
}