37 lines
1.4 KiB
37 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class UeRecoveryOutServiceAssignListJsfServiceGetSyncAssignOrderListRequest : JdRequestBase<UeRecoveryOutServiceAssignListJsfServiceGetSyncAssignOrderListResponse>
|
|
{
|
|
public string
|
|
code
|
|
{get; set;}
|
|
|
|
public string
|
|
appid
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.ue.recovery.out.service.AssignListJsfService.getSyncAssignOrderList";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("code", this. code
|
|
);
|
|
parameters.Add("appid", this. appid
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|