| | |
| | | package cn.huge.module.cases.domain.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | |
| | | @Data |
| | | public class FrontPageListDTO { |
| | | /** |
| | | * 所属编号 |
| | | */ |
| | | private String windupId; |
| | | |
| | | /** |
| | | * 所属编号 |
| | | */ |
| | | private String ownerId; |
| | | |
| | | /** |
| | | * 事项ID |
| | | */ |
| | | private String caseId; |
| | | |
| | | /** |
| | | * 流转时间 |
| | | */ |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8") |
| | | private Date turnaroundTime; |
| | | |
| | | /** |
| | | * 时限 |
| | | */ |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8") |
| | | private Date timeLimit; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 已办天数 |
| | | */ |
| | | private Integer processingDays; |
| | | private Long processingDays; |
| | | |
| | | /** |
| | | * 承办部门 |
| | |
| | | */ |
| | | private String opinion; |
| | | |
| | | /** |
| | | * 事项状态 |
| | | */ |
| | | private String process; |
| | | |
| | | /** |
| | | * 申请类型 |
| | | */ |
| | | private String applyType; |
| | | |
| | | /** |
| | | * 申请进度 |
| | | */ |
| | | private String applyStatus; |
| | | |
| | | /** |
| | | * 审核部门 |
| | | */ |
| | | private String auditDept; |
| | | |
| | | /** |
| | | * 办理结果 |
| | | */ |
| | | private String auditResult; |
| | | |
| | | /** |
| | | * 内容 |
| | | */ |
| | | private String content; |
| | | |
| | | /** |
| | | * 审核时间 |
| | | */ |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8") |
| | | private Date auditTime; |
| | | |
| | | /** |
| | | * 审核时间 |
| | | */ |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8") |
| | | private Date replyTime; |
| | | } |