package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.util.Date;
|
|
@Alias("ProcedureDocApproving")
|
@TableName("tb_procedure_doc_approving")
|
public class ProcedureDocApproving {
|
|
private Integer id;
|
private Integer mainId;
|
private String name;
|
private String version;
|
private Long fzr;
|
private Long bz;
|
private Long zz;
|
private Long pb;
|
private String description;
|
private String file;
|
private Integer type;
|
private Date createTime;
|
|
@TableField(exist = false)
|
private MultipartFile multipartFile;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getMainId() {
|
return mainId;
|
}
|
|
public void setMainId(Integer mainId) {
|
this.mainId = mainId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public Long getFzr() {
|
return fzr;
|
}
|
|
public void setFzr(Long fzr) {
|
this.fzr = fzr;
|
}
|
|
public Long getBz() {
|
return bz;
|
}
|
|
public void setBz(Long bz) {
|
this.bz = bz;
|
}
|
|
public Long getZz() {
|
return zz;
|
}
|
|
public void setZz(Long zz) {
|
this.zz = zz;
|
}
|
|
public Long getPb() {
|
return pb;
|
}
|
|
public void setPb(Long pb) {
|
this.pb = pb;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getFile() {
|
return file;
|
}
|
|
public void setFile(String file) {
|
this.file = file;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public MultipartFile getMultipartFile() {
|
return multipartFile;
|
}
|
|
public void setMultipartFile(MultipartFile multipartFile) {
|
this.multipartFile = multipartFile;
|
}
|
}
|