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.
103 lines
2.7 KiB
103 lines
2.7 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class FuWuVO:JdObject{
|
||
|
[JsonProperty("id")]
|
||
|
public long
|
||
|
|
||
|
id
|
||
|
{ get; set; }
|
||
|
[JsonProperty("sku_id")]
|
||
|
public long
|
||
|
|
||
|
skuId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_code")]
|
||
|
public string
|
||
|
|
||
|
serviceCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_name")]
|
||
|
public string
|
||
|
|
||
|
serviceName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_status")]
|
||
|
public int
|
||
|
|
||
|
serviceStatus
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_logo")]
|
||
|
public string
|
||
|
|
||
|
serviceLogo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("fws_pin")]
|
||
|
public string
|
||
|
|
||
|
fwsPin
|
||
|
{ get; set; }
|
||
|
[JsonProperty("fws_id")]
|
||
|
public int
|
||
|
|
||
|
fwsId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("cid")]
|
||
|
public int
|
||
|
|
||
|
cid
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_type")]
|
||
|
public int
|
||
|
|
||
|
serviceType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("chare_mode")]
|
||
|
public int
|
||
|
|
||
|
chareMode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("app_key")]
|
||
|
public string
|
||
|
|
||
|
appKey
|
||
|
{ get; set; }
|
||
|
[JsonProperty("has_success_case")]
|
||
|
public int
|
||
|
|
||
|
hasSuccessCase
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customer_number")]
|
||
|
public int
|
||
|
|
||
|
customerNumber
|
||
|
{ get; set; }
|
||
|
[JsonProperty("introduce")]
|
||
|
public string
|
||
|
|
||
|
introduce
|
||
|
{ get; set; }
|
||
|
[JsonProperty("created")]
|
||
|
public DateTime
|
||
|
|
||
|
created
|
||
|
{ get; set; }
|
||
|
[JsonProperty("modified")]
|
||
|
public DateTime
|
||
|
|
||
|
modified
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_ext")]
|
||
|
public ServiceMongoDBVO
|
||
|
|
||
|
serviceExt
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|