| | |
| | | @Schema(description = "客户 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long clientId; |
| | | |
| | | @Schema(description = "客户编码", example = "C001") |
| | | private String clientCode; |
| | | |
| | | @Schema(description = "客户名称", example = "XX客户") |
| | | private String clientName; |
| | | |
| | | @Schema(description = "客户简称", example = "XX") |
| | | private String clientNickname; |
| | | |
| | | @Schema(description = "退货日期") |
| | | private LocalDateTime returnDate; |
| | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private LocalDateTime createTime; |
| | | |
| | | } |
| | | } |