|
|
@ -68,11 +68,11 @@ public class DfRecordDetailV2Dto { |
|
|
|
private String createName; |
|
|
|
|
|
|
|
@ApiModelProperty("巡查详情") |
|
|
|
private List<DfRecordItemDetailDto> problems = Collections.emptyList(); |
|
|
|
private List<DfRecordItemDetailV2Dto> problems = Collections.emptyList(); |
|
|
|
|
|
|
|
|
|
|
|
@Data |
|
|
|
public static class DfRecordItemDetailDto { |
|
|
|
public static class DfRecordItemDetailV2Dto { |
|
|
|
|
|
|
|
@ApiModelProperty("主键") |
|
|
|
private String id; |
|
|
@ -80,15 +80,15 @@ public class DfRecordDetailV2Dto { |
|
|
|
@ApiModelProperty("检查部位") |
|
|
|
private List<String> parts; |
|
|
|
|
|
|
|
@ApiModelProperty("位置") |
|
|
|
private String position; |
|
|
|
|
|
|
|
@ApiModelProperty("检查内容") |
|
|
|
private String content; |
|
|
|
|
|
|
|
@ApiModelProperty("问题等级") |
|
|
|
private String problemLevel; |
|
|
|
|
|
|
|
@ApiModelProperty("存在问题") |
|
|
|
private String problem; |
|
|
|
|
|
|
|
@ApiModelProperty("问题图片") |
|
|
|
private List<String> problemImages = Collections.emptyList(); |
|
|
|
|
|
|
|