package com.gk.hotwork.Domain;
|
|
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;
|
|
/**
|
* @author jingjy
|
* @date 2021-8-19 16:48:22
|
*/
|
@TableName("taskenclosure")
|
public class TaskEnclosure implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
/** 任务附件表 id **/
|
private Long id;
|
|
/** 任务编号 taskcode **/
|
private String taskcode;
|
|
/** 类型 type **/
|
private String type;
|
|
/** 文件类型(1.图片;2.pdf) filetype **/
|
private Byte filetype;
|
|
/** 文件名称 filename **/
|
private String filename;
|
|
/** 文件原始名称 originalname **/
|
private String originalname;
|
|
/** 文件链接 fileurl **/
|
private String fileurl;
|
|
/** 版本号 version **/
|
private Float version;
|
|
/** 备注信息 remark **/
|
private String remark;
|
|
/** 创建人 createdby **/
|
private String createdby;
|
|
/** 创建时间 createdat **/
|
private Date createdat;
|
|
/** 修改人 modifiedby **/
|
private String modifiedby;
|
|
/** 修改时间 modifiedat **/
|
private Date modifiedat;
|
|
/** 标记 flag **/
|
private Byte flag;
|
|
@TableField(exist = false)
|
private String url;
|
|
@TableField(exist = false)
|
private String uid;
|
|
@TableField(exist = false)
|
private String status;
|
|
@TableField(exist = false)
|
private String name;
|
|
/** 任务附件表 id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** 任务附件表 id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 任务编号 taskcode **/
|
public String getTaskcode() {
|
return taskcode;
|
}
|
|
/** 任务编号 taskcode **/
|
public void setTaskcode(String taskcode) {
|
this.taskcode = taskcode == null ? null : taskcode.trim();
|
}
|
|
/** 类型 type **/
|
public String getType() {
|
return type;
|
}
|
|
/** 类型 type **/
|
public void setType(String type) {
|
this.type = type == null ? null : type.trim();
|
}
|
|
/** 文件类型(1.图片;2.pdf) filetype **/
|
public Byte getFiletype() {
|
return filetype;
|
}
|
|
/** 文件类型(1.图片;2.pdf) filetype **/
|
public void setFiletype(Byte filetype) {
|
this.filetype = filetype;
|
}
|
|
/** 文件名称 filename **/
|
public String getFilename() {
|
return filename;
|
}
|
|
/** 文件名称 filename **/
|
public void setFilename(String filename) {
|
this.filename = filename == null ? null : filename.trim();
|
}
|
|
/** 文件原始名称 originalname **/
|
public String getOriginalname() {
|
return originalname;
|
}
|
|
/** 文件原始名称 originalname **/
|
public void setOriginalname(String originalname) {
|
this.originalname = originalname == null ? null : originalname.trim();
|
}
|
|
/** 文件链接 fileurl **/
|
public String getFileurl() {
|
return fileurl;
|
}
|
|
/** 文件链接 fileurl **/
|
public void setFileurl(String fileurl) {
|
this.fileurl = fileurl == null ? null : fileurl.trim();
|
}
|
|
/** 版本号 version **/
|
public Float getVersion() {
|
return version;
|
}
|
|
/** 版本号 version **/
|
public void setVersion(Float version) {
|
this.version = version;
|
}
|
|
/** 备注信息 remark **/
|
public String getRemark() {
|
return remark;
|
}
|
|
/** 备注信息 remark **/
|
public void setRemark(String remark) {
|
this.remark = remark == null ? null : remark.trim();
|
}
|
|
/** 创建人 createdby **/
|
public String getCreatedby() {
|
return createdby;
|
}
|
|
/** 创建人 createdby **/
|
public void setCreatedby(String createdby) {
|
this.createdby = createdby == null ? null : createdby.trim();
|
}
|
|
/** 创建时间 createdat **/
|
public Date getCreatedat() {
|
return createdat;
|
}
|
|
/** 创建时间 createdat **/
|
public void setCreatedat(Date createdat) {
|
this.createdat = createdat;
|
}
|
|
/** 修改人 modifiedby **/
|
public String getModifiedby() {
|
return modifiedby;
|
}
|
|
/** 修改人 modifiedby **/
|
public void setModifiedby(String modifiedby) {
|
this.modifiedby = modifiedby == null ? null : modifiedby.trim();
|
}
|
|
/** 修改时间 modifiedat **/
|
public Date getModifiedat() {
|
return modifiedat;
|
}
|
|
/** 修改时间 modifiedat **/
|
public void setModifiedat(Date modifiedat) {
|
this.modifiedat = modifiedat;
|
}
|
|
/** 标记 flag **/
|
public Byte getFlag() {
|
return flag;
|
}
|
|
/** 标记 flag **/
|
public void setFlag(Byte flag) {
|
this.flag = flag;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
}
|