| | |
| | | package com.ycl.dto.dispatch; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel("UploadDisposingResultParam") |
| | | public class UploadDisposingResultParam { |
| | | |
| | | @ApiModelProperty(value = "案件id") |
| | | private Long caseId; |
| | | //承办队员 |
| | | |
| | | @ApiModelProperty(value = "调查取证id") |
| | | private Long investigationId; |
| | | |
| | | @ApiModelProperty(value = "到达现场id") |
| | | private Long arrivalSituationId; |
| | | |
| | | @ApiModelProperty(value = "当事人id") |
| | | private Long partyInfoId; |
| | | |
| | | |
| | | @ApiModelProperty(value = "图片id") |
| | | private Integer imageResourcesId; |
| | | /** |
| | | * 承办队员 |
| | | */ |
| | |
| | | * 时间 |
| | | */ |
| | | @ApiModelProperty(value = "时间") |
| | | private LocalDateTime investigationTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String investigationTime; |
| | | |
| | | /** |
| | | * 地址 |
| | |
| | | * 照片 |
| | | */ |
| | | @ApiModelProperty(value = "照片") |
| | | private String pic; |
| | | private List<String> pic; |
| | | |
| | | //现场 |
| | | |
| | |
| | | * 到达时间 |
| | | */ |
| | | @ApiModelProperty(value = "到达时间") |
| | | private LocalDateTime arrivalTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String arrivalTime; |
| | | |
| | | /** |
| | | * 到达地址 |
| | |
| | | * 现场情况照片 |
| | | */ |
| | | @ApiModelProperty(value = "现场情况照片") |
| | | private String situationPic; |
| | | private List<String> situationPic; |
| | | |
| | | //文书 |
| | | /** |
| | |
| | | * 文书发放时间 |
| | | */ |
| | | @ApiModelProperty(value = "文书发放时间") |
| | | private LocalDateTime sendTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String sendTime; |
| | | |
| | | /** |
| | | * 文书限定时间 |
| | | */ |
| | | @ApiModelProperty(value = "文书限定时间") |
| | | private LocalDateTime limitTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String limitTime; |
| | | |
| | | /** |
| | | * 文书发放内容 |
| | |
| | | * 实际整改时间 |
| | | */ |
| | | @ApiModelProperty(value = "实际整改时间") |
| | | private LocalDateTime rectifyTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String rectifyTime; |
| | | |
| | | /** |
| | | * 整改情况 |
| | |
| | | @ApiModelProperty(value = "其他照片") |
| | | private String otherPic; |
| | | |
| | | /** |
| | | * 文书模板值 |
| | | */ |
| | | @ApiModelProperty(value = "文书模板值") |
| | | private String value; |
| | | |
| | | //当事人 |
| | | |
| | | /** |
| | |
| | | * 证件类型 |
| | | */ |
| | | @ApiModelProperty(value = "证件类型") |
| | | private String certificateType; |
| | | private Integer certificateType; |
| | | |
| | | /** |
| | | * 证件号 |
| | |
| | | * 文化程度 |
| | | */ |
| | | @ApiModelProperty(value = "文化程度") |
| | | private String educationDegree; |
| | | private Integer educationDegree; |
| | | |
| | | /** |
| | | * 职业 |
| | |
| | | * 民族 |
| | | */ |
| | | @ApiModelProperty(value = "民族") |
| | | private String nation; |
| | | private Integer nation; |
| | | |
| | | /** |
| | | * 籍贯 |