| | |
| | | @ExcelProperty("客户") |
| | | private String clientName; |
| | | |
| | | @Schema(description = "实际出库时间") |
| | | @ExcelProperty("实际出库时间") |
| | | private LocalDateTime outboundTime; |
| | | |
| | | @Schema(description = "执行出库操作人ID") |
| | | private Long outboundUserId; |
| | | |
| | | @Schema(description = "执行出库操作人名称") |
| | | @ExcelProperty("出库操作人") |
| | | private String outboundUserName; |
| | | |
| | | @Schema(description = "销售订单号", example = "SO2026030001") |
| | | @ExcelProperty("销售订单号") |
| | | private String salesOrderCode; |
| | |
| | | @Schema(description = "发货通知单编号", example = "SN2026030001") |
| | | @ExcelProperty("发货通知单编号") |
| | | private String noticeCode; |
| | | |
| | | @Schema(description = "客户编码", example = "C001") |
| | | @ExcelProperty("客户编码") |
| | | private String clientCode; |
| | | |
| | | @Schema(description = "收货人", example = "张三") |
| | | @ExcelProperty("收货人") |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | } |
| | | } |