忽略dll文件git
This commit is contained in:
@@ -1,109 +0,0 @@
|
||||
using System;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
using System.Collections.Generic;
|
||||
using Alipay.AopSdk.Core.Response;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Request
|
||||
{
|
||||
/// <summary>
|
||||
/// AOP API: zoloz.identification.user.web.query
|
||||
/// </summary>
|
||||
public class ZolozIdentificationUserWebQueryRequest : IAopRequest<ZolozIdentificationUserWebQueryResponse>
|
||||
{
|
||||
/// <summary>
|
||||
/// H5刷脸认证查询
|
||||
/// </summary>
|
||||
public string BizContent { 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 string GetApiName()
|
||||
{
|
||||
return "zoloz.identification.user.web.query";
|
||||
}
|
||||
|
||||
public void SetApiVersion(string apiVersion){
|
||||
this.apiVersion=apiVersion;
|
||||
}
|
||||
|
||||
public string GetApiVersion(){
|
||||
return this.apiVersion;
|
||||
}
|
||||
|
||||
public IDictionary<string, string> GetParameters()
|
||||
{
|
||||
AopDictionary parameters = new AopDictionary();
|
||||
parameters.Add("biz_content", this.BizContent);
|
||||
return parameters;
|
||||
}
|
||||
|
||||
public AopObject GetBizModel()
|
||||
{
|
||||
return this.bizModel;
|
||||
}
|
||||
|
||||
public void SetBizModel(AopObject bizModel)
|
||||
{
|
||||
this.bizModel = bizModel;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user