You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
package com.dxhy.erp.model;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Author wangzhikun
|
|
* @Date 2023/3/16 2023/3/16
|
|
*/
|
|
@Data
|
|
public class ZDATA {
|
|
|
|
@JsonProperty(value = "ID")
|
|
private String ID;
|
|
@JsonProperty(value = "ZBZDH")
|
|
private String ZBZDH;
|
|
@JsonProperty(value = "ZFPHM")
|
|
private String ZFPHM;
|
|
@JsonProperty(value = "ZFPDM")
|
|
private String ZFPDM;
|
|
@JsonProperty(value = "ZFPLX")
|
|
private String ZFPLX;
|
|
@JsonProperty(value = "ZYWZT")
|
|
private String ZYWZT;
|
|
@JsonProperty(value = "ZGSDM")
|
|
private String ZGSDM;
|
|
@JsonProperty(value = "ZGSDMT")
|
|
private String ZGSDMT;
|
|
@JsonProperty(value = "ZJBR")
|
|
private String ZJBR;
|
|
@JsonProperty(value = "ZJBRT")
|
|
private String ZJBRT;
|
|
@JsonProperty(value = "ZJBRSJ")
|
|
private String ZJBRSJ;
|
|
@JsonProperty(value = "BELNR")
|
|
private String BELNR;
|
|
@JsonProperty(value = "BUDAT")
|
|
private String BUDAT;
|
|
@JsonProperty(value = "XXBS")
|
|
private String XXBS;
|
|
}
|
|
|