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.util.Date; import java.util.List; @TableName("taskreview") public class TaskReview { @TableField(exist = false) private static final long serialVersionUID = 1L; @TableId(type = IdType.AUTO) private Long id; private Long taskId; /** 任务编号 taskcode **/ private String taskcode; /** 审批人 reviewer **/ private String reviewer; /** 审批时间 reviewat **/ private Date reviewat; /** 审批意见(0:否;1:是) isagree **/ private Byte isagree; /** 审批描述 opinion **/ private String opinion; /** 审批级别 level **/ private String level; /** 现场图片路径可多个,逗号分隔 scenepic **/ private String scenepic; /** 签名图片路径 autograph **/ private String autograph; /** 经度 longitude **/ private String longitude; /** 纬度 latitude **/ private String latitude; /** 创建时间 createdat **/ private Date createdat; /** 创建人 createdby **/ private String createdby; /** 标记 flag **/ private Byte flag; @TableField(exist = false) private List pictures; /** id **/ public Long getId() { return id; } /** id **/ public void setId(Long id) { this.id = id; } public Long getTaskId() { return taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } /** 任务编号 taskcode **/ public String getTaskcode() { return taskcode; } /** 任务编号 taskcode **/ public void setTaskcode(String taskcode) { this.taskcode = taskcode == null ? null : taskcode.trim(); } /** 审批人 reviewer **/ public String getReviewer() { return reviewer; } /** 审批人 reviewer **/ public void setReviewer(String reviewer) { this.reviewer = reviewer == null ? null : reviewer.trim(); } /** 审批时间 reviewat **/ public Date getReviewat() { return reviewat; } /** 审批时间 reviewat **/ public void setReviewat(Date reviewat) { this.reviewat = reviewat; } /** 审批意见(0:否;1:是) isagree **/ public Byte getIsagree() { return isagree; } /** 审批意见(0:否;1:是) isagree **/ public void setIsagree(Byte isagree) { this.isagree = isagree; } /** 审批描述 opinion **/ public String getOpinion() { return opinion; } /** 审批描述 opinion **/ public void setOpinion(String opinion) { this.opinion = opinion == null ? null : opinion.trim(); } /** 审批级别 level **/ public String getLevel() { return level; } /** 审批级别 level **/ public void setLevel(String level) { this.level = level == null ? null : level.trim(); } /** 现场图片路径可多个,逗号分隔 scenepic **/ public String getScenepic() { return scenepic; } /** 现场图片路径可多个,逗号分隔 scenepic **/ public void setScenepic(String scenepic) { this.scenepic = scenepic == null ? null : scenepic.trim(); } /** 签名图片路径 autograph **/ public String getAutograph() { return autograph; } /** 签名图片路径 autograph **/ public void setAutograph(String autograph) { this.autograph = autograph == null ? null : autograph.trim(); } /** 经度 longitude **/ public String getLongitude() { return longitude; } /** 经度 longitude **/ public void setLongitude(String longitude) { this.longitude = longitude == null ? null : longitude.trim(); } /** 纬度 latitude **/ public String getLatitude() { return latitude; } /** 纬度 latitude **/ public void setLatitude(String latitude) { this.latitude = latitude == null ? null : latitude.trim(); } /** 创建时间 createdat **/ public Date getCreatedat() { return createdat; } /** 创建时间 createdat **/ public void setCreatedat(Date createdat) { this.createdat = createdat; } /** 创建人 createdby **/ public String getCreatedby() { return createdby; } /** 创建人 createdby **/ public void setCreatedby(String createdby) { this.createdby = createdby == null ? null : createdby.trim(); } /** 标记 flag **/ public Byte getFlag() { return flag; } /** 标记 flag **/ public void setFlag(Byte flag) { this.flag = flag; } public List getPictures() { return pictures; } public void setPictures(List pictures) { this.pictures = pictures; } }