|
@@ -0,0 +1,280 @@
|
|
|
+package com.zglc.kg.entity;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+import org.neo4j.ogm.annotation.NodeEntity;
|
|
|
+import org.neo4j.ogm.annotation.Property;
|
|
|
+
|
|
|
+import javax.persistence.*;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@NodeEntity(label = "algorithm")
|
|
|
+public class Algorithm1Entity {
|
|
|
+
|
|
|
+ @Id
|
|
|
+ @GeneratedValue
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Property(name = "algorithm_type")
|
|
|
+ private String algorithmType;
|
|
|
+
|
|
|
+ @Property(name = "algorithm_title")
|
|
|
+ private String algorithmTitle;
|
|
|
+
|
|
|
+ @Property(name = "algorithm_method_name")
|
|
|
+ private String algorithmMethodName;
|
|
|
+
|
|
|
+ @Property(name = "algorithm_format")
|
|
|
+ private String algorithmFormat;
|
|
|
+
|
|
|
+ @Property(name = "algorithm_des")
|
|
|
+ private String algorithmDes;
|
|
|
+
|
|
|
+ @Property(name = "create_time")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ @Property(name = "create_user")
|
|
|
+ private String createUser;
|
|
|
+
|
|
|
+ @Property(name = "is_enable")
|
|
|
+ private Integer isEnable;
|
|
|
+
|
|
|
+ @Property(name = "parent_id")
|
|
|
+ private Integer parentId;
|
|
|
+
|
|
|
+ @Property(name = "is_fusion_method")
|
|
|
+ private String isFusionMethod;
|
|
|
+
|
|
|
+ @Property(name = "assess_method")
|
|
|
+ private String assessMethod;
|
|
|
+
|
|
|
+ @Property(name = "assess_model")
|
|
|
+ private String assessModel;
|
|
|
+
|
|
|
+ @Property(name = "environment_load")
|
|
|
+ private String environmentLoad;
|
|
|
+
|
|
|
+ @Property(name = "show_type")
|
|
|
+ private String showType;
|
|
|
+
|
|
|
+ @Property(name = "r_type")
|
|
|
+ private String rType;
|
|
|
+
|
|
|
+ @Property(name = "m_type")
|
|
|
+ private String mType;
|
|
|
+
|
|
|
+ @Property(name = "data_file_path")
|
|
|
+ private String dataFilePath;
|
|
|
+
|
|
|
+ @Property(name = "is_zh")
|
|
|
+ private Integer isZh;
|
|
|
+
|
|
|
+ @Property(name = "apply_type")
|
|
|
+ private String applyType;
|
|
|
+
|
|
|
+ @Property(name = "is_open")
|
|
|
+ private String isOpen;
|
|
|
+
|
|
|
+ @Property(name = "is_algorithm_model")
|
|
|
+ private String isAlgorithmModel;
|
|
|
+
|
|
|
+ @Property(name = "mysql_id")
|
|
|
+ private Integer mysqlId;
|
|
|
+
|
|
|
+// public Algorithm1Entity() {
|
|
|
+// }
|
|
|
+//
|
|
|
+// public Algorithm1Entity(Long id,String algorithmType, String algorithmTitle, String algorithmMethodName,String algorithmFormat,String algorithmDes,
|
|
|
+// Date createTime,String createUser,Integer isEnable,Integer parentId,String isFusionMethod,String assessMethod,
|
|
|
+// String assessModel,String environmentLoad,String showType,String rType,String mType,String dataFilePath,
|
|
|
+// Integer isZh,String applyType,String isOpen,String isAlgorithmModel,Integer mysqlId) {
|
|
|
+// this.id = id;
|
|
|
+// this.algorithmType = algorithmType;
|
|
|
+// this.algorithmTitle = algorithmTitle;
|
|
|
+// this.algorithmMethodName = algorithmMethodName;
|
|
|
+// this.algorithmFormat = algorithmFormat;
|
|
|
+// this.algorithmDes = algorithmDes;
|
|
|
+// this.createTime = createTime;
|
|
|
+// this.createUser = createUser;
|
|
|
+// this.isEnable = isEnable;
|
|
|
+// this.parentId = parentId;
|
|
|
+// this.isFusionMethod = isFusionMethod;
|
|
|
+// this.assessMethod = assessMethod;
|
|
|
+// this.assessModel = assessModel;
|
|
|
+// this.environmentLoad = environmentLoad;
|
|
|
+// this.showType = showType;
|
|
|
+// this.rType = rType;
|
|
|
+// this.mType = mType;
|
|
|
+// this.dataFilePath = dataFilePath;
|
|
|
+// this.isZh = isZh;
|
|
|
+// this.applyType = applyType;
|
|
|
+// this.isOpen = isOpen;
|
|
|
+// this.isAlgorithmModel = isAlgorithmModel;
|
|
|
+// this.mysqlId = mysqlId;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public Long getId() {
|
|
|
+// return id;
|
|
|
+// }
|
|
|
+// public void setId(Long id) {
|
|
|
+// this.id = id;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getAlgorithmType() {
|
|
|
+// return algorithmType;
|
|
|
+// }
|
|
|
+// public void setAlgorithmType(String algorithmType) {
|
|
|
+// this.algorithmType = algorithmType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getAlgorithmTitle() {
|
|
|
+// return algorithmTitle;
|
|
|
+// }
|
|
|
+// public void setAlgorithmTitle(String algorithmTitle) {
|
|
|
+// this.algorithmTitle = algorithmTitle;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getAlgorithmMethodName() {
|
|
|
+// return algorithmMethodName;
|
|
|
+// }
|
|
|
+// public void setAlgorithmMethodName(String algorithmMethodName) {
|
|
|
+// this.algorithmMethodName = algorithmMethodName;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public String getAlgorithmFormat() {
|
|
|
+// return algorithmFormat;
|
|
|
+// }
|
|
|
+// public void setAlgorithmFormat(String algorithmFormat) {
|
|
|
+// this.algorithmFormat = algorithmFormat;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setAlgorithmDes(String algorithmDes) {
|
|
|
+// this.algorithmDes = algorithmDes;
|
|
|
+// }
|
|
|
+// public String getAlgorithmDes() {
|
|
|
+// return algorithmDes;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setCreateTime(Date createTime) {
|
|
|
+// this.createTime = createTime;
|
|
|
+// }
|
|
|
+// public Date getCreateTime() {
|
|
|
+// return createTime;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setCreateUser(String createUser) {
|
|
|
+// this.createUser = createUser;
|
|
|
+// }
|
|
|
+// public String getCreateUser() {
|
|
|
+// return createUser;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsEnable(Integer isEnable) {
|
|
|
+// this.isEnable = isEnable;
|
|
|
+// }
|
|
|
+// public Integer getIsEnable() {
|
|
|
+// return isEnable;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setParentId(Integer parentId) {
|
|
|
+// this.parentId = parentId;
|
|
|
+// }
|
|
|
+// public Integer getParentId() {
|
|
|
+// return parentId;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsFusionMethod(String isFusionMethod) {
|
|
|
+// this.isFusionMethod = isFusionMethod;
|
|
|
+// }
|
|
|
+// public String getIsFusionMethod() {
|
|
|
+// return isFusionMethod;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setAssessMethod(String assessMethod) {
|
|
|
+// this.assessMethod = assessMethod;
|
|
|
+// }
|
|
|
+// public String getAssessMethod() {
|
|
|
+// return assessMethod;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setAssessModel(String assessModel) {
|
|
|
+// this.assessModel = assessModel;
|
|
|
+// }
|
|
|
+// public String getAssessModel() {
|
|
|
+// return assessModel;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setEnvironmentLoad(String environmentLoad) {
|
|
|
+// this.environmentLoad = environmentLoad;
|
|
|
+// }
|
|
|
+// public String getEnvironmentLoad() {
|
|
|
+// return environmentLoad;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setShowType(String showType) {
|
|
|
+// this.showType = showType;
|
|
|
+// } public String getShowType() {
|
|
|
+// return showType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setrType(String rType) {
|
|
|
+// this.rType = rType;
|
|
|
+// }
|
|
|
+// public String getrType() {
|
|
|
+// return rType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setmType(String mType) {
|
|
|
+// this.mType = mType;
|
|
|
+// }
|
|
|
+// public String getmType() {
|
|
|
+// return mType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setDataFilePath(String dataFilePath) {
|
|
|
+// this.dataFilePath = dataFilePath;
|
|
|
+// }
|
|
|
+// public String getDataFilePath() {
|
|
|
+// return dataFilePath;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsZh(Integer isZh) {
|
|
|
+// this.isZh = isZh;
|
|
|
+// }
|
|
|
+// public Integer getIsZh() {
|
|
|
+// return isZh;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setApplyType(String applyType) {
|
|
|
+// this.applyType = applyType;
|
|
|
+// }
|
|
|
+// public String getApplyType() {
|
|
|
+// return applyType;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsOpen(String isOpen) {
|
|
|
+// this.isOpen = isOpen;
|
|
|
+// }
|
|
|
+// public String getIsOpen() {
|
|
|
+// return isOpen;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setIsAlgorithmModel(String isAlgorithmModel) {
|
|
|
+// this.isAlgorithmModel = isAlgorithmModel;
|
|
|
+// }
|
|
|
+// public String getIsAlgorithmModel() {
|
|
|
+// return isAlgorithmModel;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public Integer getMysqlId() {
|
|
|
+// return mysqlId;
|
|
|
+// }
|
|
|
+// public void setMysqlId(Integer mysqlId) {
|
|
|
+// this.mysqlId = mysqlId;
|
|
|
+// }
|
|
|
+
|
|
|
+}
|