| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package cn.iocoder.yudao.module.mdm.api.unit.dto; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Schema(description = "RPC æå¡ - MDM 计éåä½ Response DTO") |
| | | @Data |
| | | public class MdmUnitMeasureRespDTO { |
| | | |
| | | @Schema(description = "åä½ç¼å·", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long id; |
| | | |
| | | @Schema(description = "åä½ç¼ç ", requiredMode = Schema.RequiredMode.REQUIRED, example = "PCS") |
| | | private String code; |
| | | |
| | | @Schema(description = "åä½åç§°", requiredMode = Schema.RequiredMode.REQUIRED, example = "个") |
| | | private String name; |
| | | |
| | | @Schema(description = "æ¯å¦ä¸»åä½", example = "true") |
| | | private Boolean primaryFlag; |
| | | |
| | | @Schema(description = "主åä½ç¼å·", example = "1") |
| | | private Long primaryId; |
| | | |
| | | @Schema(description = "ä¸ä¸»å使¢ç®æ¯ä¾", example = "1.0") |
| | | private BigDecimal changeRate; |
| | | |
| | | @Schema(description = "ç¶æ", requiredMode = Schema.RequiredMode.REQUIRED, example = "0") |
| | | private Integer status; |
| | | |
| | | } |