using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayCommerceCityfacilitatorVoucherGenerateModel Data Structure. /// [Serializable] public class AlipayCommerceCityfacilitatorVoucherGenerateModel : AopObject { /// /// 城市编码请参考查询:http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201504/t20150415_712722.html; 已支持城市:广州 440100,深圳 /// 440300,杭州330100。 /// [JsonProperty("city_code")] public string CityCode { get; set; } /// /// 起点站站点编码 /// [JsonProperty("site_begin")] public string SiteBegin { get; set; } /// /// 终点站站点编码 /// [JsonProperty("site_end")] public string SiteEnd { get; set; } /// /// 地铁票购票数量 /// [JsonProperty("ticket_num")] public string TicketNum { get; set; } /// /// 单张票价,元为单价 /// [JsonProperty("ticket_price")] public string TicketPrice { get; set; } /// /// 地铁票种类 /// [JsonProperty("ticket_type")] public string TicketType { get; set; } /// /// 订单总金额,元为单位 /// [JsonProperty("total_fee")] public string TotalFee { get; set; } /// /// 支付宝交易号(交易支付时,必须通过指定sellerId:2088121612215201,将钱支付到指定的中间户中) /// [JsonProperty("trade_no")] public string TradeNo { get; set; } } }