| | |
| | | package com.panzhihua.common.model.vos.grid; |
| | | |
| | | import java.util.*; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * |
| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-05-26 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("事件处理流转记录返回参数") |
| | | public class EventTransferRecordVO { |
| | | |
| | | @ApiModelProperty(value = "id") |
| | | private Long id; |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "事件ID") |
| | | private Long eventId; |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long eventId; |
| | | |
| | | @ApiModelProperty(value = "来源类型(1、网格员2、社区3、是街道)") |
| | | private Integer fromType; |
| | | private Integer fromType; |
| | | |
| | | @ApiModelProperty(value = "事件来源机构或网格员") |
| | | private Long from; |
| | | private Long from; |
| | | |
| | | @ApiModelProperty(value = "转交办理人路径名称") |
| | | private String fromName; |
| | | private String fromName; |
| | | |
| | | @ApiModelProperty(value = "转交类型(1、网格员2、社区3、是街道)") |
| | | private Integer toType; |
| | | private Integer toType; |
| | | |
| | | @ApiModelProperty(value = "事件下游机构或网格员") |
| | | private Long toId; |
| | | private Long toId; |
| | | |
| | | @ApiModelProperty(value = "需要办理人路径名称") |
| | | private String toName; |
| | | private String toName; |
| | | |
| | | @ApiModelProperty(value = "处理结果") |
| | | private String processResult; |
| | | private String processResult; |
| | | |
| | | @ApiModelProperty(value = "处理时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date processDate; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date processDate; |
| | | |
| | | @ApiModelProperty(value = "处理人或社区") |
| | | private Long processBy; |
| | | |
| | | @ApiModelProperty(value = "处理人名或社区名") |
| | | private String processByName; |
| | | |
| | | @ApiModelProperty(value = "业务处理类型") |
| | | private Integer processType; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty(value = "音频") |
| | | private List<EventResourceVO> audios; |
| | | @ApiModelProperty(value = "音频") |
| | | private List<EventResourceVO> audios; |
| | | |
| | | @ApiModelProperty(value = "视频") |
| | | private List<EventResourceVO> videos; |
| | | @ApiModelProperty(value = "视频") |
| | | private List<EventResourceVO> videos; |
| | | |
| | | @ApiModelProperty(value = "图片") |
| | | private List<EventResourceVO> pics; |
| | | @ApiModelProperty(value = "图片") |
| | | private List<EventResourceVO> pics; |
| | | |
| | | } |