4 changed files with 236 additions and 179 deletions
@ -0,0 +1,21 @@ |
|||||
|
using BBWY.JDSDK.Response; |
||||
|
using Jd.Api; |
||||
|
using System.Collections.Generic; |
||||
|
|
||||
|
namespace BBWY.JDSDK.Request |
||||
|
{ |
||||
|
public class SellerDeliverySendPromiseTemplateJsfServiceQuerySendTemplateByCategoryRequest : JdRequestBase<SellerDeliverySendPromiseTemplateJsfServiceQuerySendTemplateByCategoryResponse> |
||||
|
{ |
||||
|
public override string ApiName => "jingdong.seller.delivery.SendPromiseTemplateJsfService.querySendTemplateByCategory"; |
||||
|
|
||||
|
public int categoryId { get; set; } |
||||
|
|
||||
|
public bool dzSku { get; set; } |
||||
|
|
||||
|
protected override void PrepareParam(IDictionary<string, object> paramters) |
||||
|
{ |
||||
|
paramters.Add("categoryId", this.categoryId); |
||||
|
paramters.Add("dzSku", this.dzSku); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
using Jd.Api; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.JDSDK.Response |
||||
|
{ |
||||
|
public class SellerDeliverySendPromiseTemplateJsfServiceQuerySendTemplateByCategoryResponse: JdResponse |
||||
|
{ |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue