| | |
| | | */ |
| | | |
| | | @Data |
| | | @JsonPropertyOrder({"issueReportId", "clientName", "phone", "reportTime", "content", "images", "audios", "videos", "state"}) |
| | | @JsonPropertyOrder({"issueReportId", "clientName", "phone", "reportTime", "content", "images", "audios", "videos", "replyTime", "stateId", "state"}) |
| | | public class VoIssueReport implements BaseEntity { |
| | | private static final long serialVersionUID = 202410301354001L; |
| | | |
| | |
| | | private String videos; |
| | | |
| | | /** |
| | | * 状态 |
| | | * 上报回复时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date replyTime; |
| | | |
| | | /** |
| | | * 状态值 |
| | | */ |
| | | private Integer stateId; |
| | | |
| | | /** |
| | | * 状态描述 |
| | | */ |
| | | private String state; |
| | | } |