surverytest新增otherreport字段

This commit is contained in:
guofeihu
2024-08-20 15:15:56 +08:00
parent 053183cdd0
commit 003880619e
5 changed files with 26 additions and 23 deletions

View File

@@ -23,8 +23,13 @@ public class SurveyTestVO extends BaseEntity implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 普测测试管理表id
* 其他报告
*/
private String otherReport;
/**
* 普测测试管理表id
*/
private String id;
/**

View File

@@ -217,6 +217,7 @@ public class SurveyTestServiceImpl extends ServiceImpl<SurveyTestMapper, SurveyT
surveyTest.setSupervisionReport(surveyTestParam.getSupervisionReport());
surveyTest.setProblemFlag(surveyTestParam.getProblemFlag());
surveyTest.setProblemDetail(surveyTestParam.getProblemDetail());
surveyTest.setOtherReport(surveyTestParam.getOtherReport());
//设置状态
if(Objects.equals(surveyTestParam.getSaveOrCheckflag(),"1")){
surveyTest.setStatus(BpmTaskStatusEnum.WAIT.getStatus());