|
@@ -4,6 +4,8 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.time.LocalDateTime;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
@@ -14,6 +16,7 @@ import java.io.Serializable;
|
|
|
* @author zhoutg
|
|
|
* @since 2021-04-06
|
|
|
*/
|
|
|
+@Data
|
|
|
public class MedManagementInfo implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -26,33 +29,26 @@ public class MedManagementInfo implements Serializable {
|
|
|
*/
|
|
|
private Long hospitalId;
|
|
|
|
|
|
- /**
|
|
|
- * 0:门诊 1:住院 2:住院+门诊
|
|
|
- */
|
|
|
- private Integer department;
|
|
|
|
|
|
- /**
|
|
|
- * 职务id
|
|
|
- */
|
|
|
- private Integer positionId;
|
|
|
|
|
|
/**
|
|
|
* 0:门诊病案管理人员 1:住院病案管理人员 2:病案编码人员
|
|
|
*/
|
|
|
- private Integer position;
|
|
|
+ private Integer positionId;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
- * 数据接入开始时间
|
|
|
+ * 单位时间数据接入开始时间
|
|
|
*/
|
|
|
private LocalDateTime startDate;
|
|
|
|
|
|
/**
|
|
|
- * 数据接入结束时间
|
|
|
+ * 单位时间数据接入结束时间
|
|
|
*/
|
|
|
private LocalDateTime endDate;
|
|
|
|
|
|
/**
|
|
|
- * 同期管理人员实际工作总月数
|
|
|
+ * 单位时间管理人员实际工作总月数
|
|
|
*/
|
|
|
@TableField("workMouth")
|
|
|
private Double workMouth;
|
|
@@ -82,114 +78,4 @@ public class MedManagementInfo implements Serializable {
|
|
|
*/
|
|
|
private String modifier;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
- public Long getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalId(Long hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
- }
|
|
|
- public Integer getDepartment() {
|
|
|
- return department;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDepartment(Integer department) {
|
|
|
- this.department = department;
|
|
|
- }
|
|
|
- public Integer getPositionId() {
|
|
|
- return positionId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPositionId(Integer positionId) {
|
|
|
- this.positionId = positionId;
|
|
|
- }
|
|
|
- public Integer getPosition() {
|
|
|
- return position;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPosition(Integer position) {
|
|
|
- this.position = position;
|
|
|
- }
|
|
|
- public LocalDateTime getStartDate() {
|
|
|
- return startDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStartDate(LocalDateTime startDate) {
|
|
|
- this.startDate = startDate;
|
|
|
- }
|
|
|
- public LocalDateTime getEndDate() {
|
|
|
- return endDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEndDate(LocalDateTime endDate) {
|
|
|
- this.endDate = endDate;
|
|
|
- }
|
|
|
- public Double getWorkMouth() {
|
|
|
- return workMouth;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWorkMouth(Double workMouth) {
|
|
|
- this.workMouth = workMouth;
|
|
|
- }
|
|
|
- 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;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "MedManagementInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", department=" + department +
|
|
|
- ", positionId=" + positionId +
|
|
|
- ", position=" + position +
|
|
|
- ", startDate=" + startDate +
|
|
|
- ", endDate=" + endDate +
|
|
|
- ", workMouth=" + workMouth +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- "}";
|
|
|
- }
|
|
|
}
|