whycxzp
2024-11-27 04c0b477a369a9c12aa7f5f52e79608a5d40f342
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
 
@TableName("tb_sop_file_type")
public class SOPFileType {
 
    private Integer id;
    private String type1;
    private String type2;
    private Date createTime;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getType1() {
        return type1;
    }
 
    public void setType1(String type1) {
        this.type1 = type1;
    }
 
    public String getType2() {
        return type2;
    }
 
    public void setType2(String type2) {
        this.type2 = type2;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}