XiaoRuby
2023-07-26 cdaff9ab0d1b676e3b429171d6de0887c98f488c
standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Standard.java
ÎļþÃû´Ó standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Standards.java ÐÞ¸Ä
@@ -2,7 +2,6 @@
import com.baomidou.mybatisplus.annotation.*;
import java.time.LocalDateTime;
import java.io.Serializable;
import java.util.Date;
@@ -23,22 +22,16 @@
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="Standards对象", description="标准")
public class Standards implements Serializable {
public class Standard implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "标准编号 yyMMdd000001(000001++)", example = "230711000001", required = true)
    @TableId(value = "id", type = IdType.INPUT)
    private String id;
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty(value = "标准名称", example = "光纤", required = true)
    private String name;
    @ApiModelProperty(value = "英文名称", example = "OpticalFibre", required = true)
    private String engName;
    @ApiModelProperty(value = "0:原材料;1:电线电缆", example = "1", required = true)
    private Integer type;
    @TableLogic(value = "1", delval = "0")
    @ApiModelProperty(value = "逻辑删除 æ­£å¸¸>=1,删除<=0", hidden = true)
@@ -58,8 +51,7 @@
    @Version
    private Integer version;
    @ApiModelProperty(value = "关联字段 æ›´æ–°äººid", hidden = true)
    private Integer userId;
    @ApiModelProperty(value = "物料Id", hidden = true)
    private Integer materialId;
}