6 changed files with 171 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
package com.elink.esua.epdc.constant; |
||||
|
|
||||
|
/** |
||||
|
* 青岛市青诉即办平台接入常量类 |
||||
|
* @Author wgf |
||||
|
* @Date 2022/9/16 14:07 |
||||
|
*/ |
||||
|
public interface PushToCityGridConstant { |
||||
|
|
||||
|
/** |
||||
|
* 诉求派遣 |
||||
|
*/ |
||||
|
public final static String APPEAL_DISPATCH = "http://ip:port/case/dispatch"; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,106 @@ |
|||||
|
package com.elink.esua.epdc.dto.item.result; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @author wanggongfeng |
||||
|
* @date 2022/9/16 11:12 |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class AppealDispatchResultDto { |
||||
|
|
||||
|
|
||||
|
// 诉求ID
|
||||
|
@JsonProperty("sqid") |
||||
|
private String sqid; |
||||
|
|
||||
|
//诉求状态
|
||||
|
@JsonProperty("sqzt") |
||||
|
private String sqzt; |
||||
|
|
||||
|
//当前处理环节
|
||||
|
@JsonProperty("dqclhj") |
||||
|
private String dqclhj; |
||||
|
|
||||
|
//派遣人
|
||||
|
@JsonProperty("czr") |
||||
|
private CzrDTO czr; |
||||
|
|
||||
|
//派遣时间
|
||||
|
@JsonProperty("czsj") |
||||
|
private Date czsj; |
||||
|
|
||||
|
//派遣意见
|
||||
|
@JsonProperty("cznr") |
||||
|
private String cznr; |
||||
|
|
||||
|
//处理期限
|
||||
|
@JsonProperty("clqx") |
||||
|
private String clqx; |
||||
|
|
||||
|
//派遣信息
|
||||
|
@JsonProperty("pqlist") |
||||
|
private List<PqlistDTO> pqlist; |
||||
|
|
||||
|
@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; |
||||
|
} |
||||
|
|
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public static class PqlistDTO { |
||||
|
//处理人姓名
|
||||
|
@JsonProperty("clrxm") |
||||
|
private String clrxm; |
||||
|
|
||||
|
//处理人ID
|
||||
|
@JsonProperty("clrid") |
||||
|
private String clrid; |
||||
|
|
||||
|
//处理部门
|
||||
|
@JsonProperty("clbm") |
||||
|
private String clbm; |
||||
|
|
||||
|
//处理部门ID
|
||||
|
@JsonProperty("clbmid") |
||||
|
private String clbmid; |
||||
|
|
||||
|
//处理机构
|
||||
|
@JsonProperty("cljg") |
||||
|
private String cljg; |
||||
|
|
||||
|
//处理机构ID
|
||||
|
@JsonProperty("cljgid") |
||||
|
private String cljgid; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue