XiaoRuby
2023-09-04 e9fad92ee8dbc83b84085861edade8be83b03736
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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;
}