NewGaoKaoApi/New_College.Model/ViewModels/Query/OrderQuery.cs

29 lines
919 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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