package com.yuanchu.mom.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
* <p>
|
* 不合格处理意见表
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-07 01:54:28
|
*/
|
@Getter
|
@Setter
|
public class Opinion implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 意见id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 部门类型 0:技术部;1:生产部;2:质量部;3:总经办
|
*/
|
private Integer type;
|
|
/**
|
* 处理意见
|
*/
|
private String tell;
|
|
/**
|
* 处理方式 格式[1,2,3] 0:返工;1:返修;2:让步接收;3:拒收;4:降级使用;5:报废
|
*/
|
private String way;
|
|
private Integer state;
|
|
/**
|
* 填写日期
|
*/
|
private LocalDateTime createTime;
|
|
private LocalDateTime updateTime;
|
|
/**
|
* 关联 填写人(用户id)
|
*/
|
private Integer userId;
|
|
/**
|
* 关联 不合格统计表id
|
*/
|
private Integer rawUnacceptedId;
|
}
|