| | |
| | | |
| | | @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724") |
| | | private Long customerId; |
| | | @Schema(description = "客户名称", example = "芋道") |
| | | @Schema(description = "客户名称", example = "超级管理员") |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | |
| | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "创建人", example = "芋道") |
| | | @Schema(description = "创建人", example = "超级管理员") |
| | | private String creator; |
| | | @Schema(description = "创建人名称", example = "芋道") |
| | | @Schema(description = "创建人名称", example = "超级管理员") |
| | | private String creatorName; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | |
| | | @Schema(description = "库存数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal stockCount; // 该字段仅仅在详情和编辑时使用 |
| | | |
| | | @Schema(description = "规格型号", requiredMode = Schema.RequiredMode.REQUIRED, example = "-") |
| | | private String productSpecification; |
| | | |
| | | } |
| | | |
| | | } |