接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using Alipay.AopSdk.F2FPay.Model;
namespace Alipay.AopSdk.F2FPay.Domain
{
/// <summary>
/// AlipayTradePrecreateContentBuilder 的摘要说明
/// </summary>
public class AlipayTradePrecreateContentBuilder : JsonBuilder
{
public string out_trade_no {get;set;}
public string seller_id {get;set;}
public string total_amount { get; set; }
public string discountable_amount { get; set; }
public string undiscountable_amount { get; set; }
public string subject { get; set; }
public string body { get; set; }
public List<GoodsInfo> goods_detail{get;set;}
public string operator_id { get; set; }
public string store_id { get; set; }
public string terminal_id { get; set; }
public ExtendParams extend_params { get; set; }
public string time_expire { get; set; }
public string timeout_express { get; set; }
public string qr_code_timeout_express { get; set; }
public override bool Validate()
{
throw new NotImplementedException();
}
}
}