|
@ -1,9 +1,11 @@
|
|
|
package com.yihu.jw.entity.hospital.healthCare;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Bing on 2022/7/18.
|
|
@ -13,9 +15,15 @@ import javax.persistence.Table;
|
|
|
public class YlzMedicalRecharge extends UuidIdentityEntity {
|
|
|
private String outChargeNo;
|
|
|
private String value;
|
|
|
private String chargeResult;
|
|
|
private String chargeResult;//init待交易,succ交易成功 (微信/支付宝成功,HIS成功),fail交易失败 (明确失败),exp交易异常(微信/支付宝成功,HIS未知,),ing正在交易,closed,交易关闭,notfound交易记录不存在
|
|
|
private String chargeResultName;
|
|
|
private String orgCode;
|
|
|
private String orgName;
|
|
|
private String equNum;
|
|
|
private String amount;
|
|
|
private String ssc;
|
|
|
private String depositType; //支付方式 支付方式ALI_QR 支付宝二维码支付;WX_QR微信二维码
|
|
|
private Date createTime;
|
|
|
|
|
|
public String getOutChargeNo() {
|
|
|
return outChargeNo;
|
|
@ -41,6 +49,14 @@ public class YlzMedicalRecharge extends UuidIdentityEntity {
|
|
|
this.chargeResult = chargeResult;
|
|
|
}
|
|
|
|
|
|
public String getChargeResultName() {
|
|
|
return chargeResultName;
|
|
|
}
|
|
|
|
|
|
public void setChargeResultName(String chargeResultName) {
|
|
|
this.chargeResultName = chargeResultName;
|
|
|
}
|
|
|
|
|
|
public String getOrgCode() {
|
|
|
return orgCode;
|
|
|
}
|
|
@ -57,4 +73,45 @@ public class YlzMedicalRecharge extends UuidIdentityEntity {
|
|
|
this.equNum = equNum;
|
|
|
}
|
|
|
|
|
|
public String getOrgName() {
|
|
|
return orgName;
|
|
|
}
|
|
|
|
|
|
public void setOrgName(String orgName) {
|
|
|
this.orgName = orgName;
|
|
|
}
|
|
|
|
|
|
public String getAmount() {
|
|
|
return amount;
|
|
|
}
|
|
|
|
|
|
public void setAmount(String amount) {
|
|
|
this.amount = amount;
|
|
|
}
|
|
|
|
|
|
public String getSsc() {
|
|
|
return ssc;
|
|
|
}
|
|
|
|
|
|
public void setSsc(String ssc) {
|
|
|
this.ssc = ssc;
|
|
|
}
|
|
|
|
|
|
public String getDepositType() {
|
|
|
return depositType;
|
|
|
}
|
|
|
|
|
|
public void setDepositType(String depositType) {
|
|
|
this.depositType = depositType;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
}
|