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.
84 lines
4.3 KiB
84 lines
4.3 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Jd.Api.Response;
|
||
|
using Jd.Api.Util;
|
||
|
namespace Jd.Api.Request
|
||
|
{
|
||
|
public class DdNoticeNoticeDispatcherRequest : JdRequestBase<DdNoticeNoticeDispatcherResponse>
|
||
|
{
|
||
|
public string
|
||
|
token
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
appId
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
extend
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
receiver {get; set; }
|
||
|
public Nullable<DateTime>
|
||
|
time
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
title
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
content
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
url
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
nType
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
noticeId
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.dd.notice.NoticeDispatcher";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("token", this. token
|
||
|
);
|
||
|
parameters.Add("appId", this. appId
|
||
|
);
|
||
|
parameters.Add("extend", this. extend
|
||
|
);
|
||
|
parameters.Add("receiver", this. receiver
|
||
|
);
|
||
|
parameters.Add("time", this. time
|
||
|
);
|
||
|
parameters.Add("title", this. title
|
||
|
);
|
||
|
parameters.Add("content", this. content
|
||
|
);
|
||
|
parameters.Add("url", this. url
|
||
|
);
|
||
|
parameters.Add("nType", this. nType
|
||
|
);
|
||
|
parameters.Add("noticeId", this. noticeId
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|