| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("标准编号") |
| | | private String standardNo; |
| | |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @TableLogic |
| | | private String state; |
| | | |
| | | @ApiModelProperty("类别(0:原材料检验;1:过程检验;2:出厂检验)") |
| | |
| | | |
| | | @ApiModelProperty("工序id") |
| | | private Integer processId; |
| | | |
| | | @ApiModelProperty("工序类型") |
| | | private Integer processType; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |