You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
package com.ynxbd.wx.wxfactory.bean;
|
|
|
|
import com.ynxbd.wx.wxfactory.WxFactory;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
|
|
// 医保查询订单
|
|
|
|
@Setter
|
|
@Getter
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
public class MedicalOrder extends WxFactory.ResponseCheck.ResultBase {
|
|
private String medTradeState;
|
|
private String cashTradeStatus;
|
|
private String insuranceTradeStatus;
|
|
private String tradeStatusDesc;
|
|
private String timeEnd;
|
|
private String orderType;
|
|
private String payType;
|
|
private String openid;
|
|
private String subOpenid;
|
|
private String nonceStr;
|
|
private String totalFee;
|
|
private String cashFee;
|
|
private String allowFeeChange;
|
|
private String spbillCreateIp;
|
|
private String notifyUrl;
|
|
private String insuranceFee;
|
|
private String insuranceSelfFee;
|
|
private String insuranceFundFee;
|
|
private String insuranceOtherFee;
|
|
private String hospOutTradeNo;
|
|
private String serialNo;
|
|
private String orgNo;
|
|
private String gmtOutCreate;
|
|
private String requestContent;
|
|
private String billNo;
|
|
private String limitPay;
|
|
private String medicalCardId;
|
|
private String hospitalName;
|
|
private String returnUrl;
|
|
private String responseContent;
|
|
private String body;
|
|
private String Extends;
|
|
|
|
private String medTransId;
|
|
private String insuranceOrderId;
|
|
private String cashOrderId;
|
|
private String attach;
|
|
|
|
}
|
|
|