using System; using System.Collections.Generic; using Aop.Api.Response; namespace Aop.Api.Request { /// /// AOP API: alipay.ebpp.bill.search /// public class AlipayEbppBillSearchRequest : IAopRequest { /// /// 账单流水 /// public string BillKey { get; set; } /// /// 出账机构 /// public string ChargeInst { get; set; } /// /// 销账机构 /// public string ChargeoffInst { get; set; } /// /// 销账机构给出账机构分配的id /// public string CompanyId { get; set; } /// /// 必须以key value形式定义,转为json为格式:{"key1":"value1","key2":"value2","key3":"value3","key4":"value4"} 后端会直接转换为MAP对象,转换异常会报参数格式错误 /// public string Extend { get; set; } /// /// 业务类型 /// public string OrderType { get; set; } /// /// 子业务类型 /// public string SubOrderType { 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 "alipay.ebpp.bill.search"; } public void SetApiVersion(string apiVersion){ this.apiVersion=apiVersion; } public string GetApiVersion(){ return this.apiVersion; } public IDictionary GetParameters() { AopDictionary parameters = new AopDictionary(); parameters.Add("bill_key", this.BillKey); parameters.Add("charge_inst", this.ChargeInst); parameters.Add("chargeoff_inst", this.ChargeoffInst); parameters.Add("company_id", this.CompanyId); parameters.Add("extend", this.Extend); parameters.Add("order_type", this.OrderType); parameters.Add("sub_order_type", this.SubOrderType); return parameters; } public AopObject GetBizModel() { return this.bizModel; } public void SetBizModel(AopObject bizModel) { this.bizModel = bizModel; } #endregion } }