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.
83 lines
2.2 KiB
83 lines
2.2 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 ItemVO:JdObject{
|
||
|
[JsonProperty("id")]
|
||
|
public long
|
||
|
|
||
|
id
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_id")]
|
||
|
public long
|
||
|
|
||
|
serviceId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("service_code")]
|
||
|
public string
|
||
|
|
||
|
serviceCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("fws_pin")]
|
||
|
public string
|
||
|
|
||
|
fwsPin
|
||
|
{ get; set; }
|
||
|
[JsonProperty("fws_id")]
|
||
|
public int
|
||
|
|
||
|
fwsId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_code")]
|
||
|
public string
|
||
|
|
||
|
itemCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_name")]
|
||
|
public string
|
||
|
|
||
|
itemName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_type")]
|
||
|
public int
|
||
|
|
||
|
itemType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_version")]
|
||
|
public int
|
||
|
|
||
|
itemVersion
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_status")]
|
||
|
public int
|
||
|
|
||
|
itemStatus
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_desc")]
|
||
|
public string
|
||
|
|
||
|
itemDesc
|
||
|
{ get; set; }
|
||
|
[JsonProperty("charge_type")]
|
||
|
public int
|
||
|
|
||
|
chargeType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("created")]
|
||
|
public DateTime
|
||
|
|
||
|
created
|
||
|
{ get; set; }
|
||
|
[JsonProperty("modified")]
|
||
|
public DateTime
|
||
|
|
||
|
modified
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|