|
@@ -0,0 +1,170 @@
|
|
|
|
+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-08
|
|
|
|
+ */
|
|
|
|
+@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;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 所属类型
|
|
|
|
+ */
|
|
|
|
+ @TableField("belong_type")
|
|
|
|
+ private Integer belongType;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 内容
|
|
|
|
+ */
|
|
|
|
+ @TableField("content")
|
|
|
|
+ private String content;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 模具id
|
|
|
|
+ */
|
|
|
|
+ @TableField("mould_id")
|
|
|
|
+ private Integer mouldId;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ 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;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @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 +
|
|
|
|
+ "}";
|
|
|
|
+ }
|
|
|
|
+}
|