11 changed files with 155 additions and 16 deletions
@ -0,0 +1,63 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2022/9/19 14:35 |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class ReceiveResultDTO implements Serializable { |
|||
|
|||
/** |
|||
* 诉求id |
|||
*/ |
|||
private String sqid; |
|||
/** |
|||
* 诉求状态 |
|||
*/ |
|||
private String czbs; |
|||
/** |
|||
* 评价人员 |
|||
*/ |
|||
private CzrBean czr; |
|||
/** |
|||
* 评价时间 |
|||
*/ |
|||
private String czsj; |
|||
|
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public static class CzrBean { |
|||
/** |
|||
* 评价人员Id |
|||
*/ |
|||
private String id; |
|||
/** |
|||
* 评价人员 |
|||
*/ |
|||
private String xm; |
|||
/** |
|||
* 所属机构Id |
|||
*/ |
|||
private String ssjgbm; |
|||
/** |
|||
* 所属机构 |
|||
*/ |
|||
private String ssjg; |
|||
/** |
|||
* 所属部门Id |
|||
*/ |
|||
private String ssbmbm; |
|||
/** |
|||
* 所属部门 |
|||
*/ |
|||
private String ssbm; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue