微信后端代码
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.

21 lines
694 B

package com.ynxbd.wx.wxfactory.bean;
import com.ynxbd.wx.wxfactory.WxFactory;
import lombok.*;
// 医保下单返回
@Getter
@Setter
@ToString(callSuper = true)
@NoArgsConstructor
public class MedicalPayOrder extends WxFactory.ResponseCheck.ResultBase {
// 诊疗单id 微信生成的医疗订单id,用于后续调用接口使用
private String medTransId;
// 支付链接 下单后跳转到此url,用户完成支付,使用app支付时1.5 APP支付说明
private String payUrl;
// 支付小程序 当使用医院小程序进行下单时,会返回此参数,医院小程序跳转至该支付小程序进行支付
private String payAppId;
}