| | |
| | | using Newtonsoft.Json; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using ZeroD.Util; |
| | | |
| | | namespace LifePayment.Domain.Shared; |
| | | |
| | |
| | | [JsonProperty("gasOrgType")] |
| | | public string GasOrgType { get; set; } |
| | | |
| | | } |
| | | |
| | | public class GasOrgTypeRequestInput : ACOOLYRequestBaseInput |
| | | { |
| | | /// <summary> |
| | | /// 外部商户订单号 |
| | | /// </summary> |
| | | [JsonProperty("outOrderNo")] |
| | | public string OutOrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 平台订单号 |
| | | /// </summary> |
| | | [JsonProperty("busiOrderNo")] |
| | | public string BusiOrderNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | [JsonProperty("name")] |
| | | public string Name { get; set; } |
| | | } |
| | | |
| | | public class SetLifePayOrderPayTypeInput |
| | | public class ChannelsBaseInput : PageInput |
| | | { |
| | | public string CheckChannelId { get; set; } |
| | | } |
| | | public class SetLifePayOrderPayTypeInput : ChannelsBaseInput |
| | | { |
| | | [Required(ErrorMessage = "订单号不可为空")] |
| | | public string OrderNo { get; set; } |
| | |
| | | /// </summary> |
| | | public string Attach { get; set; } |
| | | |
| | | |
| | | } |
| | | |
| | | public class GetPayOrderForJsAPIInput |
| | | public class GetPayOrderForJsAPIInput : ChannelsBaseInput |
| | | { |
| | | [Required(ErrorMessage = "订单号不可为空")] |
| | | public string OrderNo { get; set; } |
| | |
| | | /// </summary> |
| | | public string Attach { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 支付应用的appId |
| | | /// </summary> |
| | | public string PayAppId { get; set; } |
| | | |
| | | //public string CheckChannelId { get; set; } |
| | | |
| | | } |