|
@@ -1,21 +1,26 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
|
* 标签基础表
|
|
|
* </p>
|
|
|
*
|
|
|
- * @author zhaops
|
|
|
- * @since 2018-11-23
|
|
|
+ * @author zhoutg
|
|
|
+ * @since 2018-12-03
|
|
|
*/
|
|
|
@TableName("icss_question_info")
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
public class QuestionInfo implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -34,12 +39,12 @@ public class QuestionInfo implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -77,12 +82,12 @@ public class QuestionInfo implements Serializable {
|
|
|
private Integer ageEnd;
|
|
|
|
|
|
/**
|
|
|
- * 标签标识(1:单项单问题,例如: 程度,咳出通畅度 2:单项多问题,例如:杂音,添加症状 3:填充项,例如:有前后缀的输入框 4:横铺组合项,例如:咳嗽,发热 5:竖铺组合项,例如:诊疗变化)
|
|
|
+ * 标签标识(1:单项单列,例如: 程度,咳出通畅度 2:单项多列,例如:杂音,添加症状 3:横铺单标签形式,例如:血压 4:横铺多标签形式,例如:咳嗽 5:竖铺组合项,例如:有无治疗 6:组合项多列 既往史 7:化验)
|
|
|
*/
|
|
|
private String tagType;
|
|
|
|
|
|
/**
|
|
|
- * 控件类型(0:无类型,默认值 1:下拉单选 2:下拉多选 3:联合下拉单选 4:联合下拉多选 5:占位标签 6:文本框 7:数字键盘文本框 99:联合推送)
|
|
|
+ * 控件类型(0:无类型,默认值 1:下拉单选 2:下拉多选 3:纯文本 4:待定 5:待定 6:文本框 7:数字键盘文本框 99:联合推送)
|
|
|
*/
|
|
|
private Integer controlType;
|
|
|
|
|
@@ -92,7 +97,7 @@ public class QuestionInfo implements Serializable {
|
|
|
private Integer type;
|
|
|
|
|
|
/**
|
|
|
- * 子类型,(0:本身,1:描述类型 31:既往史 32:家族史 33:个人史 34:月经史 35:婚育史)
|
|
|
+ * 子类型,(0:项目,1:描述)
|
|
|
*/
|
|
|
private Integer subType;
|
|
|
|
|
@@ -141,202 +146,4 @@ public class QuestionInfo implements Serializable {
|
|
|
*/
|
|
|
private String remark;
|
|
|
|
|
|
- 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 LocalDateTime getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(LocalDateTime 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 String getTagName() {
|
|
|
- return tagName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTagName(String tagName) {
|
|
|
- this.tagName = tagName;
|
|
|
- }
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
- public Integer getSexType() {
|
|
|
- return sexType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSexType(Integer sexType) {
|
|
|
- this.sexType = sexType;
|
|
|
- }
|
|
|
- public Integer getAgeBegin() {
|
|
|
- return ageBegin;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAgeBegin(Integer ageBegin) {
|
|
|
- this.ageBegin = ageBegin;
|
|
|
- }
|
|
|
- public Integer getAgeEnd() {
|
|
|
- return ageEnd;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAgeEnd(Integer ageEnd) {
|
|
|
- this.ageEnd = ageEnd;
|
|
|
- }
|
|
|
- public String getTagType() {
|
|
|
- return tagType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTagType(String tagType) {
|
|
|
- this.tagType = tagType;
|
|
|
- }
|
|
|
- public Integer getControlType() {
|
|
|
- return controlType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setControlType(Integer controlType) {
|
|
|
- this.controlType = controlType;
|
|
|
- }
|
|
|
- public Integer getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(Integer type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
- public Integer getSubType() {
|
|
|
- return subType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubType(Integer subType) {
|
|
|
- this.subType = subType;
|
|
|
- }
|
|
|
- public String getLabelPrefix() {
|
|
|
- return labelPrefix;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLabelPrefix(String labelPrefix) {
|
|
|
- this.labelPrefix = labelPrefix;
|
|
|
- }
|
|
|
- public String getLabelSuffix() {
|
|
|
- return labelSuffix;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLabelSuffix(String labelSuffix) {
|
|
|
- this.labelSuffix = labelSuffix;
|
|
|
- }
|
|
|
- public BigDecimal getMinValue() {
|
|
|
- return minValue;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMinValue(BigDecimal minValue) {
|
|
|
- this.minValue = minValue;
|
|
|
- }
|
|
|
- public BigDecimal getMaxValue() {
|
|
|
- return maxValue;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMaxValue(BigDecimal maxValue) {
|
|
|
- this.maxValue = maxValue;
|
|
|
- }
|
|
|
- public String getJudgeType() {
|
|
|
- return judgeType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJudgeType(String judgeType) {
|
|
|
- this.judgeType = judgeType;
|
|
|
- }
|
|
|
- public Integer getTextGenerate() {
|
|
|
- return textGenerate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTextGenerate(Integer textGenerate) {
|
|
|
- this.textGenerate = textGenerate;
|
|
|
- }
|
|
|
- public String getCopyType() {
|
|
|
- return copyType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCopyType(String copyType) {
|
|
|
- this.copyType = copyType;
|
|
|
- }
|
|
|
- public Integer getShowAdd() {
|
|
|
- return showAdd;
|
|
|
- }
|
|
|
-
|
|
|
- public void setShowAdd(Integer showAdd) {
|
|
|
- this.showAdd = showAdd;
|
|
|
- }
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "QuestionInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", tagName=" + tagName +
|
|
|
- ", name=" + name +
|
|
|
- ", sexType=" + sexType +
|
|
|
- ", ageBegin=" + ageBegin +
|
|
|
- ", ageEnd=" + ageEnd +
|
|
|
- ", tagType=" + tagType +
|
|
|
- ", controlType=" + controlType +
|
|
|
- ", type=" + type +
|
|
|
- ", subType=" + subType +
|
|
|
- ", labelPrefix=" + labelPrefix +
|
|
|
- ", labelSuffix=" + labelSuffix +
|
|
|
- ", minValue=" + minValue +
|
|
|
- ", maxValue=" + maxValue +
|
|
|
- ", judgeType=" + judgeType +
|
|
|
- ", textGenerate=" + textGenerate +
|
|
|
- ", copyType=" + copyType +
|
|
|
- ", showAdd=" + showAdd +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
}
|