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.
97 lines
5.0 KiB
97 lines
5.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class HealthYjtMaintanceRecordRequest : JdRequestBase<HealthYjtMaintanceRecordResponse>
|
|
{
|
|
public string
|
|
appId
|
|
{get; set;}
|
|
|
|
public string
|
|
appKey
|
|
{get; set;}
|
|
|
|
public string
|
|
jsonArrayDetails
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
enterpriseId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
forceRegisterFlag
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
goodsType
|
|
{get; set;}
|
|
|
|
public string
|
|
maintanceDate
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
maintanceManId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
maintanceType
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
otcType
|
|
{get; set;}
|
|
|
|
public string
|
|
prescriptionDrug
|
|
{get; set;}
|
|
|
|
public string
|
|
remark
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.health.yjt.maintance.record";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("appId", this. appId
|
|
);
|
|
parameters.Add("appKey", this. appKey
|
|
);
|
|
parameters.Add("jsonArray_details", this. jsonArrayDetails
|
|
);
|
|
parameters.Add("enterpriseId", this. enterpriseId
|
|
);
|
|
parameters.Add("forceRegisterFlag", this. forceRegisterFlag
|
|
);
|
|
parameters.Add("goodsType", this. goodsType
|
|
);
|
|
parameters.Add("maintanceDate", this. maintanceDate
|
|
);
|
|
parameters.Add("maintanceManId", this. maintanceManId
|
|
);
|
|
parameters.Add("maintanceType", this. maintanceType
|
|
);
|
|
parameters.Add("otcType", this. otcType
|
|
);
|
|
parameters.Add("prescriptionDrug", this. prescriptionDrug
|
|
);
|
|
parameters.Add("remark", this. remark
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|