9 changed files with 136 additions and 7 deletions
@ -0,0 +1,52 @@ |
|||||
|
package com.elink.esua.epdc.dto.item.result; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class AppealHandlingResultDTO { |
||||
|
|
||||
|
@JsonProperty("sqid") |
||||
|
private String sqid; |
||||
|
@JsonProperty("sqzt") |
||||
|
private String sqzt; |
||||
|
@JsonProperty("dqclhj") |
||||
|
private String dqclhj; |
||||
|
@JsonProperty("sqlx") |
||||
|
private String sqlx; |
||||
|
@JsonProperty("czr") |
||||
|
private CzrDTO czr; |
||||
|
@JsonProperty("czsj") |
||||
|
private Date czsj; |
||||
|
@JsonProperty("cznr") |
||||
|
private String cznr; |
||||
|
@JsonProperty("clzp") |
||||
|
private String clzp; |
||||
|
@JsonProperty("hyjy") |
||||
|
private String hyjy; |
||||
|
@JsonProperty("zrfg") |
||||
|
private String zrfg; |
||||
|
@JsonProperty("bljd") |
||||
|
private String bljd; |
||||
|
|
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public static class CzrDTO { |
||||
|
@JsonProperty("id") |
||||
|
private String id; |
||||
|
@JsonProperty("xm") |
||||
|
private String xm; |
||||
|
@JsonProperty("ssjgid") |
||||
|
private String ssjgid; |
||||
|
@JsonProperty("ssjgmc") |
||||
|
private String ssjgmc; |
||||
|
@JsonProperty("ssbmid") |
||||
|
private String ssbmid; |
||||
|
@JsonProperty("ssbmmc") |
||||
|
private String ssbmmc; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue