| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.*; |
| | | |
| | | /** |
| | | * 出入库客户-往来单位信息 |
| | | * 出入库客户-往来单位信息 2023年5月26日 根据新国粮规优化 |
| | | * |
| | | * @author czt |
| | | * @description 版本4.0字段已审 |
| | |
| | | private String deptId; |
| | | |
| | | @Column(name = "TYPE_", length = 4) |
| | | @PropertyDef(label = "客户分类", description = "系统内使用:提货商、供货商") |
| | | @PropertyDef(label = "业务分类", description = "系统内使用:提货商、供货商") |
| | | private String type; |
| | | |
| | | @Column(name = "khlx", length = 50) |
| | | @PropertyDef(label = "单位类型", description = "1-企业,2-个人") |
| | | @PropertyDef(label = "客户类型", description = "1-企业,2-个人") |
| | | private String khlx; |
| | | |
| | | @PropertyDef(label = "客户统一社会信用代码或身份证号" ) |
| | | @Column(name = "khtyshxydmhsfzh", length = 18) |
| | | private String khtyshxydmhsfzh; |
| | | @PropertyDef(label = "客户编码:企业客户填写统一社会信用代码,个人客户填写身份证号") |
| | | @Column(name = "khbh", length = 18) |
| | | private String khbh; |
| | | |
| | | @Column(name = "NAME_", length = 50) |
| | | @PropertyDef(label = "客户名称") |