| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.yuanchu.mom.common.OrderBy; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | /** |
| | | * 检验单负责人记录 |
| | | * @TableName ins_order_user |
| | | * <p> |
| | | * 每次检验任务重复记录 |
| | | * </p> |
| | | * |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2024-09-14 10:08:31 |
| | | */ |
| | | @TableName(value ="ins_order_user") |
| | | @Data |
| | | public class InsOrderUser implements Serializable { |
| | | /** |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @Getter |
| | | @Setter |
| | | @TableName("ins_order_user") |
| | | @ApiModel(value = "InsOrderUser对象", description = "每次检验任务重复记录") |
| | | public class InsOrderUser extends OrderBy implements Serializable { |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 外键:检验单id |
| | | */ |
| | | private Integer insOrderId; |
| | | @ApiModelProperty("外键:检验任务id") |
| | | private Integer insOrderStateId; |
| | | |
| | | /** |
| | | * 外键:用户id 负责人 |
| | | */ |
| | | private Integer userId; |
| | | @ApiModelProperty("提交人") |
| | | private Integer submitUser; |
| | | |
| | | /** |
| | | * 1:确认 0:未确认 |
| | | */ |
| | | private Integer state; |
| | | @TableField(select = false,exist = false) |
| | | private String submitUserName; |
| | | |
| | | @ApiModelProperty("") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | } |
| | | @ApiModelProperty("提交时间") |
| | | private LocalDateTime submitTime; |
| | | |
| | | @ApiModelProperty("检验次数") |
| | | private Integer num; |
| | | |
| | | @ApiModelProperty("备注") |
| | | private String note; |
| | | |
| | | @ApiModelProperty("条件") |
| | | private String term; |
| | | |
| | | @ApiModelProperty("理由") |
| | | private String tell; |
| | | } |