123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package thyyxxk.simzfeeoprnsystm.pojo;
- import lombok.Data;
- import thyyxxk.simzfeeoprnsystm.utils.StringUtil;
- import java.util.Date;
- /**
- * @description: 门诊患者基本信息
- * @author: DingJie
- * @create: 2021-06-28 14:40:10
- **/
- @Data
- public class MzPatientInfo {
- private String staffId;
- private String patNo;
- private Integer times;
- private Integer ledgerSn;
- private String name;
- private String socialNo;
- private String psnNo;
- private String balc;
- private String insuplcAdmdvs;
- private String insutype;
- private String empName;
- private String mdtrtId;
- private String medType;
- private String psnType;
- private String acctUsedFlag;
- private Date visitDate;
- private String doctorCode;
- private String doctorName;
- private String deptCode;
- private String deptName;
- private String deptClass;
- private String icdCode;
- private String icdText;
- private Integer needSaving;
- private Integer saved;
- private Boolean revokeRegistration;
- private String mdtrtCertType;
- private String mdtrtCertNo;
- private String readCardResult;
- private String readCardBizType;
- private String expContent;
- private Boolean savePreSettleResult;
- public Boolean needRevokeRegistration() {
- return null != revokeRegistration && revokeRegistration;
- }
- public Boolean needSavePreSettleResult() {
- return null != savePreSettleResult && savePreSettleResult;
- }
- public String getAcctUsedFlag() {
- return StringUtil.isBlank(acctUsedFlag) ? "0" : acctUsedFlag;
- }
- public Integer getSaved() {
- return null == saved ? 0 : saved;
- }
- public String getBalc() {
- return StringUtil.isBlank(balc) ? "0" : balc;
- }
- }
|