6 changed files with 169 additions and 14 deletions
@ -1 +1 @@ |
|||
Subproject commit 568a831e4f4cd768f06bea9442509272fdc3d99d |
|||
Subproject commit cec06ab4f0e34d3cbc28b599d6a5e8b90308e206 |
@ -0,0 +1,94 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
/** |
|||
* 诉求废弃 |
|||
* |
|||
* @author zhy |
|||
* @date 2022/9/16 15:10 |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class AppealAbandonResultDTO { |
|||
|
|||
|
|||
/** |
|||
* 诉求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; |
|||
|
|||
/** |
|||
* 废弃原因 |
|||
*/ |
|||
@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