From 93430938a25ab3d4e218a2198ae1b24a516f6382 Mon Sep 17 00:00:00 2001 From: zhouxiantao <1026371446@qq.com> Date: Tue, 17 Jun 2025 17:31:15 +0800 Subject: [PATCH] freat:粤政易相关代码 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/FrontPageListAllDTO.java | 78 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 78 insertions(+), 0 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/FrontPageListAllDTO.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/FrontPageListAllDTO.java new file mode 100644 index 0000000..f45d6c3 --- /dev/null +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/dto/FrontPageListAllDTO.java @@ -0,0 +1,78 @@ +package cn.huge.module.cases.domain.dto; + +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; + +import java.util.Date; + +/** + * @author zhouxiantao + * @create 2025-04-15 15:55 + */ +@Data +public class FrontPageListAllDTO { + /** + * 所属业务表编号 + */ + private String ownerId; + + /** + * 纠纷信息ID + */ + private String caseId; + + /** + * 风险案件标签,0:非风险案件,1:风险案件 + */ + private String isRisk; + + /** + * 流转时间 + */ + @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 caseGrade; + + /** + * 事项来源 + */ + private String caseSource; + /** + * 纠纷类型 + */ + private String caseType; + + /** + * 申请方 + */ + private String plaintiffs; + + /** + * 被申请方 + */ + private String defendants; + + /** + * 督办次数 + */ + private int superviseCount; + /** + * 类型编码 + * */ + private String taskType; + /** + * 类型名称 + * */ + private String taskTypeName; + +} -- Gitblit v1.8.0