|
@ -3,7 +3,6 @@ package com.yihu.jw.entity.hospital.healthCare;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import com.yihu.jw.entity.hospital.prescription.WlyyOutpatientDO;
|
|
|
import org.w3c.dom.stylesheets.LinkStyle;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
@ -65,6 +64,107 @@ public class YlzMedicalRelationDO extends UuidIdentityEntity {
|
|
|
private Date createTime;//创建时间',
|
|
|
private String detailSerial;//医保明细流水号
|
|
|
private Integer status;//结算状态
|
|
|
private String diseaseCode;//病种编码
|
|
|
private String treatmentType;//人员待遇类别
|
|
|
private String treatmentTypeName;//人员待遇类别名称
|
|
|
private String treatmentStatus;//医疗待遇状态
|
|
|
private String treatmentStatusName;//医疗待遇状态名称
|
|
|
private String allopatryType;//异地就医类型
|
|
|
private String allopatryTypeName;//异地就医类型名称
|
|
|
private String administrativeArea;//参保地行政区划
|
|
|
private String payStandard;//统筹支付医保费用起付标准
|
|
|
private String tcjjPay;//其中:统筹基金支付
|
|
|
private String sbjjPay;//其中:商保基金支付(大额补充)
|
|
|
private String gwyPay;//其中:公务员医疗补助
|
|
|
private String jzfpPay;//其中:精准扶贫医疗叠加
|
|
|
private String yljzPay;//其中:医疗救助基金
|
|
|
private String otherPay;//其中:其他基金支付
|
|
|
private String enterpriseSupplement;//其中:企业补充
|
|
|
private String jtgjPay;//家庭共济账户支付
|
|
|
private String collector;//收费人
|
|
|
private String pageCode;//结算code
|
|
|
private String insuranceType;//险种类型(医保类型)
|
|
|
private String insuranceTypeName;//险种类型名称
|
|
|
private Integer state;//his结算状态(1结算0未结算)
|
|
|
private Integer medicalState;//0自费1医保
|
|
|
private String hisDesc;//his结算描述
|
|
|
private String balance;//预交金余额
|
|
|
private String medicalPrice;//医保基金总额
|
|
|
private Date settleDate;//his结算时间
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
@Column(name="settle_date")
|
|
|
public Date getSettleDate() {
|
|
|
return settleDate;
|
|
|
}
|
|
|
|
|
|
public void setSettleDate(Date settleDate) {
|
|
|
this.settleDate = settleDate;
|
|
|
}
|
|
|
|
|
|
public String getMedicalPrice() {
|
|
|
return medicalPrice;
|
|
|
}
|
|
|
|
|
|
public void setMedicalPrice(String medicalPrice) {
|
|
|
this.medicalPrice = medicalPrice;
|
|
|
}
|
|
|
|
|
|
public String getBalance() {
|
|
|
return balance;
|
|
|
}
|
|
|
|
|
|
public void setBalance(String balance) {
|
|
|
this.balance = balance;
|
|
|
}
|
|
|
|
|
|
public String getHisDesc() {
|
|
|
return hisDesc;
|
|
|
}
|
|
|
|
|
|
public void setHisDesc(String hisDesc) {
|
|
|
this.hisDesc = hisDesc;
|
|
|
}
|
|
|
|
|
|
public Integer getMedicalState() {
|
|
|
return medicalState;
|
|
|
}
|
|
|
|
|
|
public void setMedicalState(Integer medicalState) {
|
|
|
this.medicalState = medicalState;
|
|
|
}
|
|
|
|
|
|
public Integer getState() {
|
|
|
return state;
|
|
|
}
|
|
|
|
|
|
public void setState(Integer state) {
|
|
|
this.state = state;
|
|
|
}
|
|
|
|
|
|
public String getInsuranceType() {
|
|
|
return insuranceType;
|
|
|
}
|
|
|
|
|
|
public void setInsuranceType(String insuranceType) {
|
|
|
this.insuranceType = insuranceType;
|
|
|
}
|
|
|
|
|
|
public String getInsuranceTypeName() {
|
|
|
return insuranceTypeName;
|
|
|
}
|
|
|
|
|
|
public void setInsuranceTypeName(String insuranceTypeName) {
|
|
|
this.insuranceTypeName = insuranceTypeName;
|
|
|
}
|
|
|
|
|
|
public String getPageCode() {
|
|
|
return pageCode;
|
|
|
}
|
|
|
|
|
|
public void setPageCode(String pageCode) {
|
|
|
this.pageCode = pageCode;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
@ -485,4 +585,148 @@ public class YlzMedicalRelationDO extends UuidIdentityEntity {
|
|
|
public void setDoctorLevel(String doctorLevel) {
|
|
|
this.doctorLevel = doctorLevel;
|
|
|
}
|
|
|
|
|
|
public String getDiseaseCode() {
|
|
|
return diseaseCode;
|
|
|
}
|
|
|
|
|
|
public void setDiseaseCode(String diseaseCode) {
|
|
|
this.diseaseCode = diseaseCode;
|
|
|
}
|
|
|
|
|
|
public String getTreatmentType() {
|
|
|
return treatmentType;
|
|
|
}
|
|
|
|
|
|
public void setTreatmentType(String treatmentType) {
|
|
|
this.treatmentType = treatmentType;
|
|
|
}
|
|
|
|
|
|
public String getTreatmentTypeName() {
|
|
|
return treatmentTypeName;
|
|
|
}
|
|
|
|
|
|
public void setTreatmentTypeName(String treatmentTypeName) {
|
|
|
this.treatmentTypeName = treatmentTypeName;
|
|
|
}
|
|
|
|
|
|
public String getTreatmentStatus() {
|
|
|
return treatmentStatus;
|
|
|
}
|
|
|
|
|
|
public void setTreatmentStatus(String treatmentStatus) {
|
|
|
this.treatmentStatus = treatmentStatus;
|
|
|
}
|
|
|
|
|
|
public String getTreatmentStatusName() {
|
|
|
return treatmentStatusName;
|
|
|
}
|
|
|
|
|
|
public void setTreatmentStatusName(String treatmentStatusName) {
|
|
|
this.treatmentStatusName = treatmentStatusName;
|
|
|
}
|
|
|
|
|
|
public String getAllopatryType() {
|
|
|
return allopatryType;
|
|
|
}
|
|
|
|
|
|
public void setAllopatryType(String allopatryType) {
|
|
|
this.allopatryType = allopatryType;
|
|
|
}
|
|
|
|
|
|
public String getAllopatryTypeName() {
|
|
|
return allopatryTypeName;
|
|
|
}
|
|
|
|
|
|
public void setAllopatryTypeName(String allopatryTypeName) {
|
|
|
this.allopatryTypeName = allopatryTypeName;
|
|
|
}
|
|
|
|
|
|
public String getAdministrativeArea() {
|
|
|
return administrativeArea;
|
|
|
}
|
|
|
|
|
|
public void setAdministrativeArea(String administrativeArea) {
|
|
|
this.administrativeArea = administrativeArea;
|
|
|
}
|
|
|
|
|
|
public String getPayStandard() {
|
|
|
return payStandard;
|
|
|
}
|
|
|
|
|
|
public void setPayStandard(String payStandard) {
|
|
|
this.payStandard = payStandard;
|
|
|
}
|
|
|
|
|
|
public String getTcjjPay() {
|
|
|
return tcjjPay;
|
|
|
}
|
|
|
|
|
|
public void setTcjjPay(String tcjjPay) {
|
|
|
this.tcjjPay = tcjjPay;
|
|
|
}
|
|
|
|
|
|
public String getSbjjPay() {
|
|
|
return sbjjPay;
|
|
|
}
|
|
|
|
|
|
public void setSbjjPay(String sbjjPay) {
|
|
|
this.sbjjPay = sbjjPay;
|
|
|
}
|
|
|
|
|
|
public String getGwyPay() {
|
|
|
return gwyPay;
|
|
|
}
|
|
|
|
|
|
public void setGwyPay(String gwyPay) {
|
|
|
this.gwyPay = gwyPay;
|
|
|
}
|
|
|
|
|
|
public String getJzfpPay() {
|
|
|
return jzfpPay;
|
|
|
}
|
|
|
|
|
|
public void setJzfpPay(String jzfpPay) {
|
|
|
this.jzfpPay = jzfpPay;
|
|
|
}
|
|
|
|
|
|
public String getYljzPay() {
|
|
|
return yljzPay;
|
|
|
}
|
|
|
|
|
|
public void setYljzPay(String yljzPay) {
|
|
|
this.yljzPay = yljzPay;
|
|
|
}
|
|
|
|
|
|
public String getOtherPay() {
|
|
|
return otherPay;
|
|
|
}
|
|
|
|
|
|
public void setOtherPay(String otherPay) {
|
|
|
this.otherPay = otherPay;
|
|
|
}
|
|
|
|
|
|
public String getEnterpriseSupplement() {
|
|
|
return enterpriseSupplement;
|
|
|
}
|
|
|
|
|
|
public void setEnterpriseSupplement(String enterpriseSupplement) {
|
|
|
this.enterpriseSupplement = enterpriseSupplement;
|
|
|
}
|
|
|
|
|
|
public String getJtgjPay() {
|
|
|
return jtgjPay;
|
|
|
}
|
|
|
|
|
|
public void setJtgjPay(String jtgjPay) {
|
|
|
this.jtgjPay = jtgjPay;
|
|
|
}
|
|
|
|
|
|
public String getCollector() {
|
|
|
return collector;
|
|
|
}
|
|
|
|
|
|
public void setCollector(String collector) {
|
|
|
this.collector = collector;
|
|
|
}
|
|
|
}
|