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.
65 lines
7.3 KiB
65 lines
7.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class JingdongDataVenderMarketingActivityUpdateSubmitRequest : JdRequestBase<JingdongDataVenderMarketingActivityUpdateSubmitResponse>
|
|
{
|
|
public string
|
|
mktActivityId
|
|
{get; set;}
|
|
|
|
public string
|
|
mktTaskExecuteTimePlan
|
|
{get; set;}
|
|
|
|
public string
|
|
taskDesc {get; set; }
|
|
public string
|
|
taskType {get; set; }
|
|
public string
|
|
nextTasks {get; set; }
|
|
public string
|
|
taskName {get; set; }
|
|
public string
|
|
preTasks {get; set; }
|
|
public string
|
|
taskId {get; set; }
|
|
public string
|
|
extraInfo {get; set; }
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.jingdong.data.vender.marketing.activity.update.submit";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("mkt_activity_id", this. mktActivityId
|
|
);
|
|
parameters.Add("mkt_task_execute_time_plan", this. mktTaskExecuteTimePlan
|
|
);
|
|
parameters.Add("task_desc", this. taskDesc
|
|
);
|
|
parameters.Add("task_type", this. taskType
|
|
);
|
|
parameters.Add("next_tasks", this. nextTasks
|
|
);
|
|
parameters.Add("task_name", this. taskName
|
|
);
|
|
parameters.Add("pre_tasks", this. preTasks
|
|
);
|
|
parameters.Add("task_id", this. taskId
|
|
);
|
|
parameters.Add("extra_info", this. extraInfo
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|