| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package cn.iocoder.yudao.module.mes.controller.admin.wm.productissue.vo.line; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Schema(description = "管çåå° - MES 颿åºåºåè¡å¯éå表 Response VO") |
| | | @Data |
| | | public class MesWmProductIssueLineReturnableRespVO { |
| | | |
| | | @Schema(description = "颿åè¡ID", example = "1") |
| | | private Long id; |
| | | |
| | | @Schema(description = "ç©æID", example = "1") |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "ç©æç¼ç ", example = "M001") |
| | | private String itemCode; |
| | | |
| | | @Schema(description = "ç©æåç§°", example = "颿¿") |
| | | private String itemName; |
| | | |
| | | @Schema(description = "è§æ ¼åå·", example = "10mm*100mm") |
| | | private String specification; |
| | | |
| | | @Schema(description = "计éåä½åç§°", example = "åå
") |
| | | private String unitMeasureName; |
| | | |
| | | @Schema(description = "å¯éæ°é", example = "30.00") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "æ¹æ¬¡ID", example = "1") |
| | | private Long batchId; |
| | | |
| | | @Schema(description = "æ¹æ¬¡å·", example = "BATCH20260101001") |
| | | private String batchCode; |
| | | |
| | | } |