| | |
| | | private String salesContractNo; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "总合同号") |
| | | @Excel(name = "总合同号") |
| | | private String masterContractNo; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "客户id") |
| | | private Long customerId; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | |
| | | @Excel(name = "发货车牌号") |
| | | private String shippingCarNumber; |
| | | |
| | | @Schema(description = "出库批号") |
| | | @Excel(name = "出库批号") |
| | | private String outboundBatches; |
| | | |
| | | @Schema(description = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |