| | |
| | | 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 io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("quality_test_standard") |
| | | @ApiModel(value = "QualityTestStandard对象", description = "检测标准主表") |
| | | @Schema(name = "QualityTestStandard对象", description = "检测标准主表") |
| | | public class QualityTestStandard implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("标准编号") |
| | | @Schema(description = "标准编号") |
| | | private String standardNo; |
| | | |
| | | @ApiModelProperty("标准名称") |
| | | @Schema(description = "标准名称") |
| | | private String standardName; |
| | | |
| | | @ApiModelProperty("备注") |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("修改用户") |
| | | @Schema(description = "修改用户") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Long updateUser; |
| | | |
| | | @ApiModelProperty("租户ID") |
| | | @Schema(description = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @TableLogic |
| | | @Schema(description = "状态") |
| | | private String state; |
| | | |
| | | @ApiModelProperty("类别(0:原材料检验;1:过程检验;2:出厂检验)") |
| | | @Schema(description = "类别(0:原材料检验;1:过程检验;2:出厂检验)") |
| | | private Integer inspectType; |
| | | |
| | | @ApiModelProperty("工序id") |
| | | @Schema(description = "工序id") |
| | | private Integer processId; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |