using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class FuWuVOS:JdObject{ [JsonProperty("id")] public long id { 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("app_key")] public string appKey { get; set; } [JsonProperty("has_success_case")] public int hasSuccessCase { get; set; } [JsonProperty("created")] public DateTime created { get; set; } [JsonProperty("modified")] public DateTime modified { get; set; } } }