|
@@ -60,6 +60,11 @@ public class DeptVital implements Serializable {
|
|
|
*/
|
|
|
private Long vitalId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 排序
|
|
|
+ */
|
|
|
+ private Integer orderNo;
|
|
|
+
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
@@ -72,6 +77,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -79,6 +85,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -86,6 +93,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -93,6 +101,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -100,6 +109,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -107,6 +117,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public Long getDeptId() {
|
|
|
return deptId;
|
|
|
}
|
|
@@ -114,6 +125,7 @@ public class DeptVital implements Serializable {
|
|
|
public void setDeptId(Long deptId) {
|
|
|
this.deptId = deptId;
|
|
|
}
|
|
|
+
|
|
|
public Long getVitalId() {
|
|
|
return vitalId;
|
|
|
}
|
|
@@ -121,6 +133,15 @@ public class DeptVital implements Serializable {
|
|
|
public void setVitalId(Long vitalId) {
|
|
|
this.vitalId = vitalId;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getOrderNo() {
|
|
|
+ return orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderNo(Integer orderNo) {
|
|
|
+ this.orderNo = orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -132,15 +153,16 @@ public class DeptVital implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "DeptVital{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", deptId=" + deptId +
|
|
|
- ", vitalId=" + vitalId +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", deptId=" + deptId +
|
|
|
+ ", vitalId=" + vitalId +
|
|
|
+ ", orderNo=" + orderNo +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|