|
@@ -63,27 +63,27 @@ public class LisConfig implements Serializable {
|
|
|
/**
|
|
|
* his大项名称
|
|
|
*/
|
|
|
- @Excel(name = "his大项名称", width = 40)
|
|
|
+ @Excel(name = "his大项名称", width = 40, orderNum = "1")
|
|
|
@NotBlank(message = "请输入大项名称")
|
|
|
private String hisName;
|
|
|
|
|
|
/**
|
|
|
* his小项名称
|
|
|
*/
|
|
|
- @Excel(name = "his小项名称", width = 40)
|
|
|
+ @Excel(name = "his小项名称", width = 40, orderNum = "2")
|
|
|
private String hisDetailName;
|
|
|
|
|
|
/**
|
|
|
* 标准名
|
|
|
*/
|
|
|
- @Excel(name = "标准名", width = 40)
|
|
|
+ @Excel(name = "标准名", width = 40, orderNum = "4")
|
|
|
@NotBlank(message = "请输入公表名称")
|
|
|
private String uniqueName;
|
|
|
|
|
|
/**
|
|
|
* 标准编码
|
|
|
*/
|
|
|
- @Excel(name = "标准编码", width = 40)
|
|
|
+ @Excel(name = "标准编码", width = 40, orderNum = "3")
|
|
|
private String uniqueCode;
|
|
|
|
|
|
public Long getId() {
|
|
@@ -93,6 +93,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -100,6 +101,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -107,6 +109,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -114,6 +117,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -121,6 +125,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -128,6 +133,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public Long getHospitalId() {
|
|
|
return hospitalId;
|
|
|
}
|
|
@@ -135,6 +141,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setHospitalId(Long hospitalId) {
|
|
|
this.hospitalId = hospitalId;
|
|
|
}
|
|
|
+
|
|
|
public String getHisName() {
|
|
|
return hisName;
|
|
|
}
|
|
@@ -142,6 +149,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setHisName(String hisName) {
|
|
|
this.hisName = hisName;
|
|
|
}
|
|
|
+
|
|
|
public String getHisDetailName() {
|
|
|
return hisDetailName;
|
|
|
}
|
|
@@ -149,6 +157,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setHisDetailName(String hisDetailName) {
|
|
|
this.hisDetailName = hisDetailName;
|
|
|
}
|
|
|
+
|
|
|
public String getUniqueName() {
|
|
|
return uniqueName;
|
|
|
}
|
|
@@ -156,6 +165,7 @@ public class LisConfig implements Serializable {
|
|
|
public void setUniqueName(String uniqueName) {
|
|
|
this.uniqueName = uniqueName;
|
|
|
}
|
|
|
+
|
|
|
public String getUniqueCode() {
|
|
|
return uniqueCode;
|
|
|
}
|
|
@@ -167,17 +177,17 @@ public class LisConfig implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "LisConfig{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", hisName=" + hisName +
|
|
|
- ", hisDetailName=" + hisDetailName +
|
|
|
- ", uniqueName=" + uniqueName +
|
|
|
- ", uniqueCode=" + uniqueCode +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", hisName=" + hisName +
|
|
|
+ ", hisDetailName=" + hisDetailName +
|
|
|
+ ", uniqueName=" + uniqueName +
|
|
|
+ ", uniqueCode=" + uniqueCode +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|