|
@@ -1,11 +1,13 @@
|
|
|
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;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -15,6 +17,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
* @author wangfeng
|
|
|
* @since 2018-11-19
|
|
|
*/
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
@TableName("icss_template_info")
|
|
|
public class TemplateInfo implements Serializable {
|
|
|
|
|
@@ -103,151 +107,4 @@ public class TemplateInfo 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 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 String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
- public Long getDoctorId() {
|
|
|
- return doctorId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDoctorId(Long doctorId) {
|
|
|
- this.doctorId = doctorId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getHospitalDeptId() {
|
|
|
- return hospitalDeptId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalDeptId(Long hospitalDeptId) {
|
|
|
- this.hospitalDeptId = hospitalDeptId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalId(Long hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getSex() {
|
|
|
- return sex;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSex(Integer sex) {
|
|
|
- this.sex = sex;
|
|
|
- }
|
|
|
-
|
|
|
- public String getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(String type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
- public String getPreview() {
|
|
|
- return preview;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPreview(String preview) {
|
|
|
- this.preview = preview;
|
|
|
- }
|
|
|
- public String getDataJson() {
|
|
|
- return dataJson;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDataJson(String dataJson) {
|
|
|
- this.dataJson = dataJson;
|
|
|
- }
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTemplateType() {
|
|
|
- return templateType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTemplateType(Integer templateType) {
|
|
|
- this.templateType = templateType;
|
|
|
- }
|
|
|
-
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpell(String spell) {
|
|
|
- this.spell = spell;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "TemplateInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", name=" + name +
|
|
|
- ", doctorId=" + doctorId +
|
|
|
- ", hospitalDeptId=" + hospitalDeptId +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", sex" + sex +
|
|
|
- ", type=" + type +
|
|
|
- ", preview=" + preview +
|
|
|
- ", dataJson=" + dataJson +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
}
|