using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class UniOrderQuery { /// /// 微信浏览器(标价金额) /// public decimal total_fee { get; set; } /// /// trade_type=JSAPI时(即JSAPI支付),此参数必传,此参数为微信用户在商户对应appid下的唯一标识。openid如何获取,可参考【获取openid】。企业号请使用【企业号OAuth2.0接口】获取企业号内成员userid,再调用【企业号userid转openid接口】进行转换 /// public string openid { get; set; } public int CardTypeId { get; set; } /// /// 系统生成订单号 /// public string OrderId { get; set; } public int StudentId { get; set; } } }