|
@ -30,6 +30,8 @@ public class WlyyCharge extends IdEntity {
|
|
|
private Integer totalAmount; // 交易总金额
|
|
|
private Integer selfpayAmount; // 自费金额
|
|
|
private Integer insuranceAmount; // 医保支付金额
|
|
|
private String needUpload;// 是否需要上传 0否(已上传) 1是(未上传) 2重复失败(上传失败)
|
|
|
private String uploadLog;// 上传日志
|
|
|
private String feeDetail; // 费用明细
|
|
|
private String channel; // 医保支付渠道
|
|
|
private String merchName; // 收款单位名称
|
|
@ -40,7 +42,7 @@ public class WlyyCharge extends IdEntity {
|
|
|
private String medOrgNo; // 医疗机构编码
|
|
|
private String medOrgName; // 医疗机构名称
|
|
|
private String billNo; // 待结算费用单据号
|
|
|
|
|
|
private Date updateTime;//修改时间
|
|
|
|
|
|
public String getChargeType() {
|
|
|
return chargeType;
|
|
@ -163,6 +165,22 @@ public class WlyyCharge extends IdEntity {
|
|
|
this.insuranceAmount = insuranceAmount;
|
|
|
}
|
|
|
|
|
|
public String getNeedUpload() {
|
|
|
return needUpload;
|
|
|
}
|
|
|
|
|
|
public void setNeedUpload(String needUpload) {
|
|
|
this.needUpload = needUpload;
|
|
|
}
|
|
|
|
|
|
public String getUploadLog() {
|
|
|
return uploadLog;
|
|
|
}
|
|
|
|
|
|
public void setUploadLog(String uploadLog) {
|
|
|
this.uploadLog = uploadLog;
|
|
|
}
|
|
|
|
|
|
public String getFeeDetail() {
|
|
|
return feeDetail;
|
|
|
}
|
|
@ -243,4 +261,11 @@ public class WlyyCharge extends IdEntity {
|
|
|
this.billNo = billNo;
|
|
|
}
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
}
|