| | |
| | | |
| | | import cn.idev.excel.annotation.ExcelIgnoreUnannotated; |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | |
| | | @Schema(description = "备注", example = "你猜") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "创建人", example = "芋道") |
| | | private String creator; |
| | |
| | | @Schema(description = "关联的 MPS 编号", example = "1024") |
| | | private Long mpsId; |
| | | |
| | | // ========== 出库批号 ========== |
| | | |
| | | @Schema(description = "出库批号", example = "B2026001、B2026002") |
| | | private String batchCode; |
| | | |
| | | // ========== 关联字段 ========== |
| | | |
| | | @Schema(description = "产品名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "巧克力") |