|
@@ -2,8 +2,11 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -13,6 +16,8 @@ import java.io.Serializable;
|
|
|
* @author gaodm
|
|
|
* @since 2020-04-13
|
|
|
*/
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
public class MedRecordType implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -50,66 +55,28 @@ public class MedRecordType implements Serializable {
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
- public String getTypeId() {
|
|
|
- return typeId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTypeId(String typeId) {
|
|
|
- this.typeId = typeId;
|
|
|
- }
|
|
|
- public Long getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalId(Long hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
- }
|
|
|
- public String getTypeName() {
|
|
|
- return typeName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTypeName(String typeName) {
|
|
|
- this.typeName = typeName;
|
|
|
- }
|
|
|
- public String getParentTypeId() {
|
|
|
- return parentTypeId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setParentTypeId(String parentTypeId) {
|
|
|
- this.parentTypeId = parentTypeId;
|
|
|
- }
|
|
|
- public String getObjName() {
|
|
|
- return objName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setObjName(String objName) {
|
|
|
- this.objName = objName;
|
|
|
- }
|
|
|
- public String getSpell() {
|
|
|
- return spell;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpell(String spell) {
|
|
|
- this.spell = spell;
|
|
|
- }
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "MedRecordType{" +
|
|
|
- "typeId=" + typeId +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", typeName=" + typeName +
|
|
|
- ", parentTypeId=" + parentTypeId +
|
|
|
- ", objName=" + objName +
|
|
|
- ", spell=" + spell +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private Date gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private Date gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
}
|