6 changed files with 432 additions and 1 deletions
@ -0,0 +1,101 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 退件审核 |
|||
* |
|||
* @author sun |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class DelayApplyResultDTO { |
|||
|
|||
|
|||
/** |
|||
* 诉求ID |
|||
*/ |
|||
@JsonProperty("sqid") |
|||
private String sqid; |
|||
|
|||
/** |
|||
* 诉求状态 |
|||
*/ |
|||
@JsonProperty("sqzt") |
|||
private String sqzt; |
|||
|
|||
/** |
|||
* 当前处理环节 |
|||
*/ |
|||
@JsonProperty("dqclhj") |
|||
private String dqclhj; |
|||
|
|||
/** |
|||
* 申请人员 |
|||
*/ |
|||
@JsonProperty("sqr") |
|||
private SqrDTO sqr; |
|||
|
|||
/** |
|||
* 延期时限 诉求处理的最后时限 如:2022-09-01 18:23:00前完成 |
|||
*/ |
|||
@JsonProperty("yqsx") |
|||
private Date yqsx; |
|||
|
|||
/** |
|||
* 申请时间 |
|||
*/ |
|||
@JsonProperty("sqsj") |
|||
private Date sqsj; |
|||
|
|||
/** |
|||
* 申请内容 |
|||
*/ |
|||
@JsonProperty("sqnr") |
|||
private String sqnr; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public static class SqrDTO { |
|||
|
|||
/** |
|||
* 操作人员Id |
|||
*/ |
|||
@JsonProperty("id") |
|||
private String id; |
|||
|
|||
/** |
|||
* 操作人员 |
|||
*/ |
|||
@JsonProperty("xm") |
|||
private String xm; |
|||
|
|||
/** |
|||
* 所属机构Id |
|||
*/ |
|||
@JsonProperty("ssjgid") |
|||
private String ssjgid; |
|||
|
|||
/** |
|||
* 所属机构 |
|||
*/ |
|||
@JsonProperty("ssjgmc") |
|||
private String ssjgmc; |
|||
|
|||
/** |
|||
* 所属部门Id |
|||
*/ |
|||
@JsonProperty("ssbmid") |
|||
private String ssbmid; |
|||
|
|||
/** |
|||
* 所属部门 |
|||
*/ |
|||
@JsonProperty("ssbmmc") |
|||
private String ssbmmc; |
|||
} |
|||
} |
|||
@ -0,0 +1,99 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
/** |
|||
* 退件审核 |
|||
* |
|||
* @author sun |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class DelayAuditResultDTO { |
|||
|
|||
|
|||
/** |
|||
* 诉求ID |
|||
*/ |
|||
@JsonProperty("sqid") |
|||
private String sqid; |
|||
|
|||
/** |
|||
* 诉求状态 |
|||
*/ |
|||
@JsonProperty("sqzt") |
|||
private String sqzt; |
|||
|
|||
/** |
|||
* 当前处理环节 |
|||
*/ |
|||
@JsonProperty("dqclhj") |
|||
private String dqclhj; |
|||
|
|||
/** |
|||
* 审核人员 |
|||
*/ |
|||
@JsonProperty("czr") |
|||
private CzrDTO czr; |
|||
|
|||
/** |
|||
* 审核结果 1:审核通过 0:审核不通过 |
|||
*/ |
|||
@JsonProperty("czjg") |
|||
private String czjg; |
|||
|
|||
/** |
|||
* 审核时间 |
|||
*/ |
|||
@JsonProperty("czsj") |
|||
private String czsj; |
|||
|
|||
/** |
|||
* 审核意见 |
|||
*/ |
|||
@JsonProperty("czyj") |
|||
private String czyj; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public static class CzrDTO { |
|||
|
|||
/** |
|||
* 操作人员Id |
|||
*/ |
|||
@JsonProperty("id") |
|||
private String id; |
|||
|
|||
/** |
|||
* 操作人员 |
|||
*/ |
|||
@JsonProperty("xm") |
|||
private String xm; |
|||
|
|||
/** |
|||
* 所属机构Id |
|||
*/ |
|||
@JsonProperty("ssjgid") |
|||
private String ssjgid; |
|||
|
|||
/** |
|||
* 所属机构 |
|||
*/ |
|||
@JsonProperty("ssjgmc") |
|||
private String ssjgmc; |
|||
|
|||
/** |
|||
* 所属部门Id |
|||
*/ |
|||
@JsonProperty("ssbmid") |
|||
private String ssbmid; |
|||
|
|||
/** |
|||
* 所属部门 |
|||
*/ |
|||
@JsonProperty("ssbmmc") |
|||
private String ssbmmc; |
|||
} |
|||
} |
|||
@ -0,0 +1,99 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
/** |
|||
* 退件审核 |
|||
* |
|||
* @author sun |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class RebutAuditResultDTO { |
|||
|
|||
|
|||
/** |
|||
* 诉求ID |
|||
*/ |
|||
@JsonProperty("sqid") |
|||
private String sqid; |
|||
|
|||
/** |
|||
* 诉求状态 |
|||
*/ |
|||
@JsonProperty("sqzt") |
|||
private String sqzt; |
|||
|
|||
/** |
|||
* 当前处理环节 |
|||
*/ |
|||
@JsonProperty("dqclhj") |
|||
private String dqclhj; |
|||
|
|||
/** |
|||
* 操作人 |
|||
*/ |
|||
@JsonProperty("czr") |
|||
private CzrDTO czr; |
|||
|
|||
/** |
|||
* 废弃时间 |
|||
*/ |
|||
@JsonProperty("czsj") |
|||
private String czsj; |
|||
|
|||
/** |
|||
* 1:审核通过 0:审核不通过 |
|||
*/ |
|||
@JsonProperty("shjg") |
|||
private String shjg; |
|||
|
|||
/** |
|||
* 废弃原因 |
|||
*/ |
|||
@JsonProperty("cznr") |
|||
private String cznr; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public static class CzrDTO { |
|||
|
|||
/** |
|||
* 操作人员Id |
|||
*/ |
|||
@JsonProperty("id") |
|||
private String id; |
|||
|
|||
/** |
|||
* 操作人员 |
|||
*/ |
|||
@JsonProperty("xm") |
|||
private String xm; |
|||
|
|||
/** |
|||
* 所属机构Id |
|||
*/ |
|||
@JsonProperty("ssjgid") |
|||
private String ssjgid; |
|||
|
|||
/** |
|||
* 所属机构 |
|||
*/ |
|||
@JsonProperty("ssjgmc") |
|||
private String ssjgmc; |
|||
|
|||
/** |
|||
* 所属部门Id |
|||
*/ |
|||
@JsonProperty("ssbmid") |
|||
private String ssbmid; |
|||
|
|||
/** |
|||
* 所属部门 |
|||
*/ |
|||
@JsonProperty("ssbmmc") |
|||
private String ssbmmc; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue