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;
|
|
}
|