| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 | 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;/** * <p> *  * </p> * * @author 吴涛涛 * @since 2019-08-21 */@TableName("tb_mould_operation_dynamics")public class MouldOperationDynamics extends Model<MouldOperationDynamics> {    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 +        "}";    }}
 |