| | |
| | | private Long contractItemId; |
| | | |
| | | @Schema(description = "数量") |
| | | @Column(columnDefinition="bigint comment '数量'") |
| | | private Long num; |
| | | @Column(columnDefinition="integer comment '数量'") |
| | | private Integer num; |
| | | |
| | | /** |
| | | * 验收金额 |
| | |
| | | @Column(columnDefinition="VARCHAR(32) comment '计量单位'") |
| | | private String meteringUnit; |
| | | |
| | | |
| | | /** |
| | | * 入库时所需序列号 |
| | | * 设备序列号 |
| | | */ |
| | | @Schema(description = "设备序列号") |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<String> serialNos; |
| | | @Schema(description="设备序列号 逗号分隔") |
| | | @Column(columnDefinition="VARCHAR(256) comment '设备序列号'") |
| | | private String serialNos; |
| | | |
| | | } |