李林
2024-03-14 262d4d65ad634042c7fcd647ec13385928bc3540
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
package com.yuanchu.mom.pojo;
 
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.util.Date;
import lombok.Data;
 
/**
 * 样品负责人记录
 * @TableName ins_sample_user
 */
@TableName(value ="ins_sample_user")
@Data
public class InsSampleUser implements Serializable {
    /**
     * 
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * 外键:检验样品ins_sample表id
     */
    private Integer insSampleId;
 
    /**
     * 外键:用户id 负责人
     */
    private Integer userId;
 
    /**
     * 1:确认 0:未确认
     */
    private Integer state;
 
    /**
     * 创建人
     */
    private Integer createUser;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}