| | |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Transient; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author kdq |
| | |
| | | /** |
| | | * 验收主表Id |
| | | */ |
| | | @Column(columnDefinition="long comment '验收主表Id'") |
| | | @Column(columnDefinition="bigint comment '验收主表Id'") |
| | | private Long noteId; |
| | | |
| | | /** |
| | | * 合同Id |
| | | */ |
| | | @Column(columnDefinition="long comment '合同子项Id'") |
| | | @Column(columnDefinition="bigint comment '合同子项Id'") |
| | | private Long contractItemId; |
| | | |
| | | @Schema(description = "数量") |
| | | @Column(columnDefinition="long comment '数量'") |
| | | @Column(columnDefinition="bigint comment '数量'") |
| | | private Long num; |
| | | |
| | | /** |
| | |
| | | @TableField("`output`") |
| | | @Column(columnDefinition="double comment '验收金额'") |
| | | private Double output; |
| | | |
| | | /** |
| | | * 设备ID |
| | | */ |
| | | @Schema(description="设备ID") |
| | | @Column(columnDefinition="bigint comment '设备ID'") |
| | | private Long deviceId; |
| | | |
| | | /** |
| | | * 设备编码 |
| | |
| | | @Column(columnDefinition="VARCHAR(32) comment '计量单位'") |
| | | private String meteringUnit; |
| | | |
| | | /** |
| | | * 入库时所需序列号 |
| | | */ |
| | | @Schema(description = "设备序列号") |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<String> serialNos; |
| | | } |