新增风险程度字段
This commit is contained in:
+1
-1
@@ -79,7 +79,7 @@ public class SarStandardComplianceAssessResultController {
|
||||
if (eo.getPosition() == 1) {
|
||||
QueryWrapper<SarInterpretationNationalStandard> queryWrapper = new QueryWrapper<>();
|
||||
IPage<SarInterpretationNationalStandard> iPage = new Page<>(eo.getCurrent(), eo.getSize());
|
||||
queryWrapper.select("distinct STAND_ID, STAND_NUMBER, STAND_NAME, STAND_TYPE, INTERPRETATION_TIME");
|
||||
queryWrapper.select("distinct STAND_ID, STAND_NUMBER, STAND_NAME, STAND_TYPE, INTERPRETATION_TIME,risk_degree");
|
||||
if (eo.getStandName() != null && !eo.getStandName().trim().equals("")) {
|
||||
queryWrapper.like("STAND_NAME", eo.getStandName().trim());
|
||||
}
|
||||
|
||||
+5
@@ -93,4 +93,9 @@ public class SarInterpretationNationalStandard extends BaseEntity {
|
||||
@TableField("ID")
|
||||
private String id;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "风险程度")
|
||||
@TableField("risk_degree")
|
||||
private String riskDegree;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user