package com.hssx.cloudmodel.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.extension.activerecord.Model; import com.baomidou.mybatisplus.annotation.TableId; import java.time.LocalDateTime; import com.baomidou.mybatisplus.annotation.TableField; import java.io.Serializable; /** *

* *

* * @author 吴涛涛 * @since 2019-08-21 */ @TableName("tb_mould_operation_dynamics") public class MouldOperationDynamics extends Model { private static final long serialVersionUID=1L; /** * 模具文档操作记录表主键 */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 文件id */ @TableField("file_id") private Integer fileId; /** * 操作者id */ @TableField("operator_id") private Integer operatorId; /** * 操作者姓名 */ @TableField("operator_name") private String operatorName; /** * 操作的时间 */ @TableField("indate") private LocalDateTime indate; /** * 文件名 */ @TableField("file_name") private String fileName; /** * 所述文件类型,0-模具文档 1-零件文档 2-试模验收 3-保养方案 4-模具更新 5-模具报废 */ @TableField("belong_type") private Integer belongType; /** * 内容 */ @TableField("content") private String content; /** * 模具id */ @TableField("mould_id") private Integer mouldId; /** * 是否通过 0-不通过 1-通过 */ @TableField("is_pass") private Integer isPass; /** * 申请人id */ @TableField("applicant_id") private Integer applicantId; /** * 申请人姓名 */ @TableField("applicant_name") private String applicantName; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getFileId() { return fileId; } public void setFileId(Integer fileId) { this.fileId = fileId; } public Integer getOperatorId() { return operatorId; } public void setOperatorId(Integer operatorId) { this.operatorId = operatorId; } public String getOperatorName() { return operatorName; } public void setOperatorName(String operatorName) { this.operatorName = operatorName; } public LocalDateTime getIndate() { return indate; } public void setIndate(LocalDateTime indate) { this.indate = indate; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public Integer getBelongType() { return belongType; } public void setBelongType(Integer belongType) { this.belongType = belongType; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Integer getMouldId() { return mouldId; } public void setMouldId(Integer mouldId) { this.mouldId = mouldId; } public Integer getIsPass() { return isPass; } public void setIsPass(Integer isPass) { this.isPass = isPass; } public Integer getApplicantId() { return applicantId; } public void setApplicantId(Integer applicantId) { this.applicantId = applicantId; } public String getApplicantName() { return applicantName; } public void setApplicantName(String applicantName) { this.applicantName = applicantName; } @Override protected Serializable pkVal() { return this.id; } @Override public String toString() { return "MouldOperationDynamics{" + "id=" + id + ", fileId=" + fileId + ", operatorId=" + operatorId + ", operatorName=" + operatorName + ", indate=" + indate + ", fileName=" + fileName + ", belongType=" + belongType + ", content=" + content + ", mouldId=" + mouldId + ", isPass=" + isPass + ", applicantId=" + applicantId + ", applicantName=" + applicantName + "}"; } }