初始提交
This commit is contained in:
@@ -0,0 +1,121 @@
|
||||
using System.Collections.Generic;
|
||||
using Alipay.AopSdk.Core.Response;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// AOP API: alipay.user.get
|
||||
/// </summary>
|
||||
public class AlipayUserGetRequest : IAopRequest<AlipayUserGetResponse>
|
||||
{
|
||||
/// <summary>
|
||||
/// 需要返回的字段列表。alipay_user_id:支付宝用户userId,user_status:支付宝用户状态,user_type:支付宝用户类型,certified:是否通过实名认证,real_name:真实姓名,logon_id:支付宝登录号,sex:用户性别
|
||||
/// </summary>
|
||||
public string Fields { get; set; }
|
||||
|
||||
#region IAopRequest Members
|
||||
|
||||
private bool needEncrypt;
|
||||
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 needEncrypt;
|
||||
}
|
||||
|
||||
public void SetNotifyUrl(string notifyUrl)
|
||||
{
|
||||
this.notifyUrl = notifyUrl;
|
||||
}
|
||||
|
||||
public string GetNotifyUrl()
|
||||
{
|
||||
return notifyUrl;
|
||||
}
|
||||
|
||||
public void SetReturnUrl(string returnUrl)
|
||||
{
|
||||
this.returnUrl = returnUrl;
|
||||
}
|
||||
|
||||
public string GetReturnUrl()
|
||||
{
|
||||
return returnUrl;
|
||||
}
|
||||
|
||||
public void SetTerminalType(string terminalType)
|
||||
{
|
||||
this.terminalType = terminalType;
|
||||
}
|
||||
|
||||
public string GetTerminalType()
|
||||
{
|
||||
return terminalType;
|
||||
}
|
||||
|
||||
public void SetTerminalInfo(string terminalInfo)
|
||||
{
|
||||
this.terminalInfo = terminalInfo;
|
||||
}
|
||||
|
||||
public string GetTerminalInfo()
|
||||
{
|
||||
return terminalInfo;
|
||||
}
|
||||
|
||||
public void SetProdCode(string prodCode)
|
||||
{
|
||||
this.prodCode = prodCode;
|
||||
}
|
||||
|
||||
public string GetProdCode()
|
||||
{
|
||||
return prodCode;
|
||||
}
|
||||
|
||||
public string GetApiName()
|
||||
{
|
||||
return "alipay.user.get";
|
||||
}
|
||||
|
||||
public void SetApiVersion(string apiVersion)
|
||||
{
|
||||
this.apiVersion = apiVersion;
|
||||
}
|
||||
|
||||
public string GetApiVersion()
|
||||
{
|
||||
return apiVersion;
|
||||
}
|
||||
|
||||
public IDictionary<string, string> GetParameters()
|
||||
{
|
||||
var parameters = new AopDictionary();
|
||||
parameters.Add("fields", Fields);
|
||||
return parameters;
|
||||
}
|
||||
|
||||
public AopObject GetBizModel()
|
||||
{
|
||||
return bizModel;
|
||||
}
|
||||
|
||||
public void SetBizModel(AopObject bizModel)
|
||||
{
|
||||
this.bizModel = bizModel;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user