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

74 lines
3.6 KiB

3 years ago
using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class RdmanBizcenterMaliciousOrderAddMaliciousRequest : JdRequestBase<RdmanBizcenterMaliciousOrderAddMaliciousResponse>
{
public string
memo
{get; set;}
public Nullable<int>
status
{get; set;}
public Nullable<int>
reason
{get; set;}
public string
theOrders
{get; set;}
public string
relationPhone
{get; set;}
public string
relationName
{get; set;}
public string
fileName
{get; set;}
public string
fileByte
{get; set;}
public override string ApiName
{
get{return "jingdong.rdman.bizcenter.maliciousOrder.addMalicious";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("memo", this. memo
);
parameters.Add("status", this. status
);
parameters.Add("reason", this. reason
);
parameters.Add("theOrders", this. theOrders
);
parameters.Add("relationPhone", this. relationPhone
);
parameters.Add("relationName", this. relationName
);
parameters.Add("fileName", this. fileName
);
parameters.Add("fileByte", this. fileByte
);
}
}
}