|
@@ -1,145 +1,147 @@
|
|
|
-package com.diagbot.entity;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-
|
|
|
-/**
|
|
|
- * <p>
|
|
|
- *
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author gaodm
|
|
|
- * @since 2019-03-26
|
|
|
- */
|
|
|
-public class Relation implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否删除,N:未删除,Y:删除
|
|
|
- */
|
|
|
- private String isDeleted;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
- private Date gmtCreated;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
- */
|
|
|
- private Date gmtModified;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人,0表示无创建人值
|
|
|
- */
|
|
|
- private String creator;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人,如果为0则表示纪录未修改
|
|
|
- */
|
|
|
- private String modifier;
|
|
|
-
|
|
|
- /**
|
|
|
- * 关系起点术语id
|
|
|
- */
|
|
|
- private Long startId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 关系id
|
|
|
- */
|
|
|
- private Long relationId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 关系终点术语id
|
|
|
- */
|
|
|
- private Long endId;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
- public Date getGmtCreated() {
|
|
|
- return gmtCreated;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreated(Date gmtCreated) {
|
|
|
- this.gmtCreated = gmtCreated;
|
|
|
- }
|
|
|
- public Date getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(Date gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
- public String getCreator() {
|
|
|
- return creator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
- public Long getStartId() {
|
|
|
- return startId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStartId(Long startId) {
|
|
|
- this.startId = startId;
|
|
|
- }
|
|
|
- public Long getRelationId() {
|
|
|
- return relationId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRelationId(Long relationId) {
|
|
|
- this.relationId = relationId;
|
|
|
- }
|
|
|
- public Long getEndId() {
|
|
|
- return endId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEndId(Long endId) {
|
|
|
- this.endId = endId;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "Relation{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreated=" + gmtCreated +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", startId=" + startId +
|
|
|
- ", relationId=" + relationId +
|
|
|
- ", endId=" + endId +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 术语关系表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author gaodm
|
|
|
+ * @since 2019-05-16
|
|
|
+ */
|
|
|
+@TableName("kl_relation")
|
|
|
+public class Relation implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private Date gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private Date gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关系起点术语id
|
|
|
+ */
|
|
|
+ private Long startId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关系id
|
|
|
+ */
|
|
|
+ private Long relationId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关系终点术语id
|
|
|
+ */
|
|
|
+ private Long endId;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public String getIsDeleted() {
|
|
|
+ return isDeleted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsDeleted(String isDeleted) {
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
+ }
|
|
|
+ public Date getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+ public Date getGmtModified() {
|
|
|
+ return gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ }
|
|
|
+ public String getCreator() {
|
|
|
+ return creator;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreator(String creator) {
|
|
|
+ this.creator = creator;
|
|
|
+ }
|
|
|
+ public String getModifier() {
|
|
|
+ return modifier;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifier(String modifier) {
|
|
|
+ this.modifier = modifier;
|
|
|
+ }
|
|
|
+ public Long getStartId() {
|
|
|
+ return startId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartId(Long startId) {
|
|
|
+ this.startId = startId;
|
|
|
+ }
|
|
|
+ public Long getRelationId() {
|
|
|
+ return relationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationId(Long relationId) {
|
|
|
+ this.relationId = relationId;
|
|
|
+ }
|
|
|
+ public Long getEndId() {
|
|
|
+ return endId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndId(Long endId) {
|
|
|
+ this.endId = endId;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "Relation{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", startId=" + startId +
|
|
|
+ ", relationId=" + relationId +
|
|
|
+ ", endId=" + endId +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|