| | |
| | | |
| | | package com.chinaztt.mes.basic.entity; |
| | | |
| | | import cn.hutool.core.annotation.Alias; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @Unique |
| | | @ApiModelProperty(value = "零件号") |
| | | @NonNull |
| | | @Alias("零件号") |
| | | private String partNo; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @ApiModelProperty(value = "名称") |
| | | @Alias("正在使用中的零件描述") |
| | | private String partName; |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @ApiModelProperty(value = "检测规则id") |
| | | private Long testRuleId; |
| | | /** |
| | | * 零件类型 |
| | | */ |
| | | @ApiModelProperty(value = "零件类型") |
| | | private String materialType; |
| | | /** |
| | | * 单位 |
| | | */ |
| | | @ApiModelProperty(value = "单位") |
| | | private String unit; |
| | | /** |
| | | * 单位2 |
| | | */ |
| | | @ApiModelProperty(value = "单位2") |
| | | private String sunit; |
| | | |
| | | /** |
| | | * 描述 |
| | | */ |
| | | @ApiModelProperty(value = "描述") |
| | | @Alias("零件描述") |
| | | private String description; |
| | | |
| | | /** |
| | | * 零件类型 |
| | | */ |
| | | @Alias("零件类型") |
| | | private String materialType; |
| | | /** |
| | | * 检测规则id |
| | | */ |
| | | @ApiModelProperty(value = "检测规则id") |
| | | private Long testRuleId; |
| | | |
| | | /** |
| | | * 单位 |
| | | */ |
| | | @Alias("库存计量单位") |
| | | private String unit; |
| | | |
| | | |
| | | /** |
| | | * 单位2 |
| | | */ |
| | | @Alias("重量计量单位") |
| | | private String sunit; |
| | | |
| | | |
| | | @Alias("现有数量") |
| | | private String totalNum; |
| | | |
| | | /** |
| | | * 原先的品类 现在改为 一级分类 |
| | | */ |
| | |
| | | * P:虚拟零件计划。无需附加字段 |
| | | */ |
| | | @ApiModelProperty(value = "计划方法") |
| | | @Alias("零件状态") |
| | | private String planningMethod; |
| | | /** |
| | | * 特性1 |
| | |
| | | |
| | | @ApiModelProperty(value = "是否原材料检") |
| | | private Integer testRuleType; |
| | | |
| | | @Alias("域") |
| | | private String domainNo; |
| | | |
| | | @Alias("域描述") |
| | | private String domainName; |
| | | |
| | | @Alias("是否设备备件") |
| | | private String isEquipment; |
| | | |
| | | @Alias("资产等级") |
| | | private String assets; |
| | | |
| | | @Alias("资产类别") |
| | | private String assetsType; |
| | | |
| | | @Alias("物资状态") |
| | | private String suppliesType; |
| | | |
| | | @Alias("ABC 类") |
| | | private String abcType; |
| | | |
| | | @Alias("频率级别") |
| | | private String hz; |
| | | |
| | | @Alias("声明周期") |
| | | private String cycle; |
| | | |
| | | @Alias("体积计量单位") |
| | | private String volume; |
| | | |
| | | @Alias("现有获取数量") |
| | | private String getNum; |
| | | |
| | | @Alias("默认的物料申请供应") |
| | | private String defaultMr; |
| | | |
| | | @Alias("DOP 连接") |
| | | private String dopR; |
| | | |
| | | @Alias("净额交易") |
| | | private String netto; |
| | | |
| | | @Alias("数量计算取整") |
| | | private String numCount; |
| | | |
| | | @Alias("库存估价方法") |
| | | private String ivm; |
| | | |
| | | @Alias("库存件成本层") |
| | | private String icl; |
| | | |
| | | @Alias("供应商发票事项") |
| | | private String sii; |
| | | |
| | | @Alias("零成本") |
| | | private String zc; |
| | | |
| | | @Alias("外部服务成本的方法") |
| | | private String esca; |
| | | |
| | | |
| | | } |