using System.Text.Json.Serialization; namespace Essensoft.AspNetCore.Payment.Alipay.Domain { /// /// AlipayAssetCardTransferModel Data Structure. /// public class AlipayAssetCardTransferModel : AlipayObject { /// /// 转移金额,单位元 /// [JsonPropertyName("amount")] public string Amount { get; set; } /// /// 模板实例,资产id /// [JsonPropertyName("asset_id")] public string AssetId { get; set; } /// /// 资产平台类型卡/券 /// [JsonPropertyName("asset_type")] public string AssetType { get; set; } /// /// 业务发生时间 /// [JsonPropertyName("biz_dt")] public string BizDt { get; set; } /// /// 业务订单号,幂等字段 /// [JsonPropertyName("biz_no")] public string BizNo { get; set; } /// /// 扩展信息 /// [JsonPropertyName("extend_info")] public string ExtendInfo { get; set; } /// /// 资金流场景 /// [JsonPropertyName("fund_scence")] public string FundScence { get; set; } /// /// 接收方支付宝用户id /// [JsonPropertyName("receive_user_id")] public string ReceiveUserId { get; set; } /// /// 模板id /// [JsonPropertyName("template_id")] public string TemplateId { get; set; } /// /// 支付宝用户userId /// [JsonPropertyName("user_id")] public string UserId { get; set; } } }