6 changed files with 124 additions and 2 deletions
@ -0,0 +1,42 @@ |
|||||
|
package com.elink.esua.epdc.dto.item.result; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class DispatchAuditResultDto { |
||||
|
|
||||
|
@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("shjg") |
||||
|
private String shjg; |
||||
|
@JsonProperty("cznr") |
||||
|
private String cznr; |
||||
|
|
||||
|
@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