1、报告生成修改状态;

2、设备全部归档,修改计划完成状态;
This commit is contained in:
2025-01-13 18:39:04 +08:00
parent 54c909324c
commit 6bb50bdd01
3 changed files with 9 additions and 9 deletions

View File

@@ -134,11 +134,11 @@ public class PqDevParam {
@Valid
private List<PqMonitorParam> monitorList;
@ApiModelProperty("icd")
private String icd;
@ApiModelProperty("power")
private String power;
@ApiModelProperty("icdId")
private String icdId;
//
// @ApiModelProperty("power")
// private String power;
/**
* 更新操作实体

View File

@@ -204,8 +204,8 @@ public class PqDev extends BaseEntity implements Serializable {
*/
private Integer factorCheckResult;
private String icd;
private String icdId;
private String power;
// private String power;
}

View File

@@ -71,7 +71,7 @@ public class PqDevServiceImpl extends ServiceImpl<PqDevMapper, PqDev> implements
@Override
@Transactional(rollbackFor = {Exception.class})
public boolean addPqDev(PqDevParam pqDevParam) {
this.checkRepeat(pqDevParam, false);
// this.checkRepeat(pqDevParam, false);
PqDev pqDev = new PqDev();
BeanUtil.copyProperties(pqDevParam, pqDev);
@@ -105,7 +105,7 @@ public class PqDevServiceImpl extends ServiceImpl<PqDevMapper, PqDev> implements
@Override
@Transactional(rollbackFor = {Exception.class})
public boolean updatePqDev(PqDevParam.UpdateParam updateParam) {
this.checkRepeat(updateParam, true);
// this.checkRepeat(updateParam, true);
PqDev pqDev = new PqDev();
BeanUtil.copyProperties(updateParam, pqDev);