XiaoRuby
2023-09-04 e9fad92ee8dbc83b84085861edade8be83b03736
inspect-server/src/main/java/com/yuanchu/mom/pojo/InspectUnaccepted.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.*;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
@@ -31,6 +32,9 @@
    @TableId(type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty(value = "0:成品检验单;1:半成品检验单;2:原材料检验单")
    private Integer type;
    /**
     * 缺陷名称(理由)
     **/
@@ -53,14 +57,11 @@
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date dealTime;
    /**
     * ${column.comment}
     **/
    @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true)
    @TableLogic(value = "1", delval = "0")
    private Integer state;
    /**
     * ${column.comment}
     **/
    @TableField(fill = FieldFill.INSERT)
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@@ -76,10 +77,6 @@
     **/
    private Integer rawInspectId;
    /**
     * 0:成品;1:过程;2:原材料
     **/
    private Integer type;
    /**