|  |  |  | 
|---|
|  |  |  | import com.fzzy.api.entity.ApiParent; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import lombok.EqualsAndHashCode; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.persistence.Column; | 
|---|
|  |  |  | import javax.persistence.Entity; | 
|---|
|  |  |  | import javax.persistence.Id; | 
|---|
|  |  |  | import javax.persistence.Table; | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  | import java.util.Date; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static final long serialVersionUID = -6381473449862569451L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //业务单号由 12 位数字组成,第 1-2 位为业务编码(15 代表粮食出库),第 3-8 位依次为年份的后两位、2 位月份、2位日期,后四位为顺序码。例如:141605041234 | 
|---|
|  |  |  | @Id | 
|---|
|  |  |  | @PropertyDef(label = "出库业务单号") | 
|---|
|  |  |  | private String ckywdh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "货位代码") | 
|---|
|  |  |  | private String hwdm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "统一货位编码" ) | 
|---|
|  |  |  | private String tyhwbm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "出库通知单号") | 
|---|
|  |  |  | private String cktzdh; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "合同号") | 
|---|
|  |  |  | private String hth; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "质检报告单号") | 
|---|
|  |  |  | private String zjbgdh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "承运人") | 
|---|
|  |  |  | private String cyr; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "车船号") | 
|---|
|  |  |  | private String cch; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "挂车号") | 
|---|
|  |  |  | private String gch; | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "出库结算单号") | 
|---|
|  |  |  | private String ckjsdh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "生成方式") | 
|---|
|  |  |  | private String scfs; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "手动补录原因") | 
|---|
|  |  |  | private String sdblyy; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "备注") | 
|---|
|  |  |  | private String bz; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "检斤类型") | 
|---|
|  |  |  | private String jjlx = "无"; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String lhnd; | 
|---|
|  |  |  | } | 
|---|