NewGaoKaoApi/PaymentSDK/AliPay/Request/AlipayOpenAgentOfflinepayme...

168 lines
5.2 KiB
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 Aop.Api.Response;
using Aop.Api.Util;
namespace Aop.Api.Request
{
/// <summary>
/// AOP API: alipay.open.agent.offlinepayment.sign
/// </summary>
public class AlipayOpenAgentOfflinepaymentSignRequest : IAopUploadRequest<AlipayOpenAgentOfflinepaymentSignResponse>
{
/// <summary>
/// 代商户操作事务编号通过alipay.open.agent.create接口进行创建。
/// </summary>
public string BatchNo { get; set; }
/// <summary>
/// 营业执照号码。若填写,请与以下营业执照图片、期限、一起提供。
/// </summary>
public string BusinessLicenseNo { get; set; }
/// <summary>
/// 营业执照图片。被代创建商户运营主体为个人账户必填企业账户无需填写最小5KB图片格式必须为png、bmp、gif、jpg、jpeg
/// </summary>
public FileItem BusinessLicensePic { get; set; }
/// <summary>
/// 营业期限
/// </summary>
public string DateLimitation { get; set; }
/// <summary>
/// 营业期限是否长期有效
/// </summary>
public Nullable<bool> LongTerm { get; set; }
/// <summary>
/// 所属MCCCode可参考 <a href="https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.59bgD2&treeId=222&articleId=105364&docType=1#s1">商家经营类目</a> 中的“经营类目编码”
/// </summary>
public string MccCode { get; set; }
/// <summary>
/// 服务费率(%0.38~3之间精确到0.01
/// </summary>
public string Rate { get; set; }
/// <summary>
/// 店铺门头照图片需要包括招牌信息。最小5KB图片格式必须为png、bmp、gif、jpg、jpeg
/// </summary>
public FileItem ShopSignBoardPic { get; set; }
/// <summary>
/// 企业特殊资质图片,可参考 <a href="https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.59bgD2&treeId=222&articleId=105364&docType=1#s1">商家经营类目</a> 中的“需要的特殊资质证书”最小5KB图片格式必须为png、bmp、gif、jpg、jpeg
/// </summary>
public FileItem SpecialLicensePic { get; set; }
#region IAopRequest Members
private bool needEncrypt=false;
private string apiVersion = "1.0";
private string terminalType;
private string terminalInfo;
private string prodCode;
private string notifyUrl;
private string returnUrl;
private AopObject bizModel;
public void SetNeedEncrypt(bool needEncrypt){
this.needEncrypt=needEncrypt;
}
public bool GetNeedEncrypt(){
return this.needEncrypt;
}
public void SetNotifyUrl(string notifyUrl){
this.notifyUrl = notifyUrl;
}
public string GetNotifyUrl(){
return this.notifyUrl;
}
public void SetReturnUrl(string returnUrl){
this.returnUrl = returnUrl;
}
public string GetReturnUrl(){
return this.returnUrl;
}
public void SetTerminalType(String terminalType){
this.terminalType=terminalType;
}
public string GetTerminalType(){
return this.terminalType;
}
public void SetTerminalInfo(String terminalInfo){
this.terminalInfo=terminalInfo;
}
public string GetTerminalInfo(){
return this.terminalInfo;
}
public void SetProdCode(String prodCode){
this.prodCode=prodCode;
}
public string GetProdCode(){
return this.prodCode;
}
public void SetApiVersion(string apiVersion){
this.apiVersion=apiVersion;
}
public string GetApiVersion(){
return this.apiVersion;
}
public string GetApiName()
{
return "alipay.open.agent.offlinepayment.sign";
}
public IDictionary<string, string> GetParameters()
{
AopDictionary parameters = new AopDictionary();
parameters.Add("batch_no", this.BatchNo);
parameters.Add("business_license_no", this.BusinessLicenseNo);
parameters.Add("date_limitation", this.DateLimitation);
parameters.Add("long_term", this.LongTerm);
parameters.Add("mcc_code", this.MccCode);
parameters.Add("rate", this.Rate);
return parameters;
}
public AopObject GetBizModel()
{
return this.bizModel;
}
public void SetBizModel(AopObject bizModel)
{
this.bizModel = bizModel;
}
#endregion
#region IAopUploadRequest Members
public IDictionary<string, FileItem> GetFileParameters()
{
IDictionary<string, FileItem> parameters = new Dictionary<string, FileItem>();
parameters.Add("business_license_pic", this.BusinessLicensePic);
parameters.Add("shop_sign_board_pic", this.ShopSignBoardPic);
parameters.Add("special_license_pic", this.SpecialLicensePic);
return parameters;
}
#endregion
}
}