You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

156 lines
5.3 KiB
C#

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: zhima.merchant.closeloop.data.upload
/// </summary>
public class ZhimaMerchantCloseloopDataUploadRequest : IAopUploadRequest<ZhimaMerchantCloseloopDataUploadResponse>
{
/// <summary>
/// 公用回传参数非必填该参数会透传给商户商户可以用于业务逻辑处理请使用json格式。
/// </summary>
public string BizExtParams { get; set; }
/// <summary>
/// 单条数据的数据列,多个列以逗号隔开。
/// </summary>
public string Columns { get; set; }
/// <summary>
/// 传入的json格式的文件其中records属性必填。json中的字段可以通过如下步骤获取首先调用zhima.merchant.data.upload.initialize接口获取数据模板该接口会返回一个数据模板文件的url地址http://zmxymerchant-prod.oss-cn-shenzhen.zmxy.com.cn/openApi/openDoc/信用护航-负面记录和信用足迹商户数据模板V1.0.xlsx该数据模板文件详细列出了需要传入的字段及各字段的要求data中的各字段就是该文件中列出的字段编码。
/// </summary>
public FileItem File { get; set; }
/// <summary>
/// 文件的编码如果文件格式是UTF-8则填写UTF-8如果文件格式是GBK则填写GBK。
/// </summary>
public string FileCharset { get; set; }
/// <summary>
/// 主键列使用传入字段进行组合也可以使用传入的某个单字段确保主键稳定而且可以很好的区分不同的数据。例如order_no,pay_month或者order_no,bill_month组合对于一个order_no只会有一条数据的情况直接使用order_no作为主键列。
/// </summary>
public string PrimaryKeyColumns { get; set; }
/// <summary>
/// 文件数据记录条数如file字段中的record数组有10条数据那么就填10。
/// </summary>
public string Records { get; set; }
/// <summary>
/// 数据应用的场景编码 ,场景码和场景名称(数字为场景码)如下: 1:负面披露 2:信用足迹 3:负面+足迹 4:信用守护 5:负面+守护 6:足迹+守护 7:负面+足迹+守护 8:数据反馈 32:骑行 每个场景码对应的数据模板不一样请使用zhima.merchant.data.upload.initialize接口获取场景码对应的数据模板。
/// </summary>
public string SceneCode { 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 "zhima.merchant.closeloop.data.upload";
}
public IDictionary<string, string> GetParameters()
{
AopDictionary parameters = new AopDictionary();
parameters.Add("biz_ext_params", this.BizExtParams);
parameters.Add("columns", this.Columns);
parameters.Add("file_charset", this.FileCharset);
parameters.Add("primary_key_columns", this.PrimaryKeyColumns);
parameters.Add("records", this.Records);
parameters.Add("scene_code", this.SceneCode);
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("file", this.File);
return parameters;
}
#endregion
}
}