| | |
| | | @PropertyDef(label = "支付方式") |
| | | private String payType; |
| | | |
| | | @Column(name = "fkfs") |
| | | @PropertyDef(label = "付款方式") |
| | | private String fkfs; |
| | | |
| | | @Column(name = "ysfs", length = 64) |
| | | @PropertyDef(label = "验收方式") |
| | | private String ysfs; |
| | | |
| | | /** |
| | | * --------审批信息-------- |
| | | **/ |
| | |
| | | |
| | | @Column(name = "AUDIT_DATE_") |
| | | @PropertyDef(label = "审批时间", description = "格式:yyyy-MM-dd HH:mm:ss") |
| | | private String auditDate; |
| | | private Date auditDate; |
| | | |
| | | @Column(name = "AUDIT_STATUS_", length = 10) |
| | | @PropertyDef(label = "审批状态") |
| | |
| | | @PropertyDef(label = "更新时间") |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * --------附件-------- |
| | | **/ |
| | | @Column(name = "FILE_ID_", length = 30) |
| | | @PropertyDef(label = "附件id") |
| | | private String fileId; |
| | | |
| | | @Column(name = "FILE_NAME_", length = 50) |
| | | @PropertyDef(label = "附件名称") |
| | | private String fileName; |
| | | |
| | | @Column(name = "FILE_TIME_") |
| | | @PropertyDef(label = "附件上传时间") |
| | | private Date fileTime; |
| | | } |