package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("tb_sop_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;
|
}
|
}
|