| | |
| | | @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long clientId; |
| | | |
| | | @Schema(description = "客户编码", example = "C001") |
| | | @ExcelProperty("客户编码") |
| | | private String clientCode; |
| | | |
| | | @Schema(description = "客户名称", example = "某客户") |
| | | @ExcelProperty("客户名称") |
| | | private String clientName; |
| | |
| | | @ExcelProperty("状态") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "出库状态", example = "0") |
| | | @ExcelProperty("出库状态") |
| | | private Integer outStatus; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | } |
| | | } |