| | |
| | | * 来源类型 |
| | | */ |
| | | @Schema(description = "来源类型") |
| | | @Column(columnDefinition="INTEGER comment '来源类型'") |
| | | @Column(columnDefinition="INTEGER comment '来源类型 0 租赁 1 采购'") |
| | | private String resourceType; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 使用公司 |
| | | */ |
| | | // @Schema(description = "使用公司") |
| | | // @Column(columnDefinition="long comment '使用公司'") |
| | | // private Long deptId; |
| | | @Schema(description = "使用公司") |
| | | @Column(columnDefinition="long comment '使用公司'") |
| | | private Long deptId; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<ReceivingNoteItem> noteItemList; |
| | | |
| | | /** |
| | | * 验收单名称 |
| | | */ |
| | | @Schema(description = "验收单名称") |
| | | @Column(columnDefinition="VARCHAR(256) comment '验收单名称'") |
| | | private String noteName; |
| | | } |