forked from gzzfw/backEnd/gz-dyh

wangwh
2024-09-10 de486faf7269f5351e7a7f00340677555e16c071
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/FrontPageListDTO.java
@@ -1,5 +1,6 @@
package cn.huge.module.cases.domain.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
@@ -7,13 +8,30 @@
@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;
    /**
@@ -44,7 +62,7 @@
    /**
     * 已办天数
     */
    private Integer processingDays;
    private Long processingDays;
    /**
     * 承办部门
@@ -81,5 +99,8 @@
     */
    private String opinion;
    /**
     * 事项状态
     */
    private String process;
}