123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- package com.diagbot.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * <p>
- * 病历条目
- * </p>
- *
- * @author wangyu
- * @since 2020-03-31
- */
- @TableName("qc_cases_entry_hospital")
- public class CasesEntryHospital implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 是否删除,N:未删除,Y:删除
- */
- private String isDeleted;
- /**
- * 记录创建时间
- */
- private Date gmtCreate;
- /**
- * 记录修改时间,如果时间是1970年则表示纪录未修改
- */
- private Date gmtModified;
- /**
- * 创建人,0表示无创建人值
- */
- private String creator;
- /**
- * 修改人,如果为0则表示纪录未修改
- */
- private String modifier;
- /**
- * 病历id
- */
- private Long casesEntryId;
- /**
- * 医院ID
- */
- private Long hospitalId;
- /**
- * 扣分值
- */
- private BigDecimal score;
- /**
- * 条目提示信息
- */
- private String msg;
- /**
- * 0-未启用 1-启用
- */
- private Integer isUsed;
- /**
- * 单项否决(1-单项否决 0-非)
- */
- private Integer isReject;
- /**
- * 备注
- */
- 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 Long getCasesEntryId() {
- return casesEntryId;
- }
- public void setCasesEntryId(Long casesEntryId) {
- this.casesEntryId = casesEntryId;
- }
- public Long getHospitalId() {
- return hospitalId;
- }
- public void setHospitalId(Long hospitalId) {
- this.hospitalId = hospitalId;
- }
- public BigDecimal getScore() {
- return score;
- }
- public void setScore(BigDecimal score) {
- this.score = score;
- }
- public String getMsg() {
- return msg;
- }
- public void setMsg(String msg) {
- this.msg = msg;
- }
- public Integer getIsUsed() {
- return isUsed;
- }
- public void setIsUsed(Integer isUsed) {
- this.isUsed = isUsed;
- }
- public Integer getIsReject() {
- return isReject;
- }
- public void setIsReject(Integer isReject) {
- this.isReject = isReject;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- @Override
- public String toString() {
- return "QcCasesEntryHospital{" +
- "id=" + id +
- ", isDeleted=" + isDeleted +
- ", gmtCreate=" + gmtCreate +
- ", gmtModified=" + gmtModified +
- ", creator=" + creator +
- ", modifier=" + modifier +
- ", casesEntryId=" + casesEntryId +
- ", hospitalId=" + hospitalId +
- ", score=" + score +
- ", msg=" + msg +
- ", isUsed=" + isUsed +
- ", isReject=" + isReject +
- ", remark=" + remark +
- "}";
- }
- }
|