步步为盈
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.

162 lines
2.9 KiB

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class FwTast:JdObject{
[JsonProperty("userCity")]
public string
userCity
{ get; set; }
[JsonProperty("saleOrderStat")]
public string
saleOrderStat
{ get; set; }
[JsonProperty("userProvince")]
public string
userProvince
{ get; set; }
[JsonProperty("wishBookDate")]
public string
wishBookDate
{ get; set; }
[JsonProperty("buyShop")]
public string
buyShop
{ get; set; }
[JsonProperty("companyName")]
public string
companyName
{ get; set; }
[JsonProperty("buyDate")]
public DateTime
buyDate
{ get; set; }
[JsonProperty("itemCode")]
public string
itemCode
{ get; set; }
[JsonProperty("deliverNo")]
public string
deliverNo
{ get; set; }
[JsonProperty("remark")]
public string
remark
{ get; set; }
[JsonProperty("deliverCompany")]
public string
deliverCompany
{ get; set; }
[JsonProperty("deliverArriveDate")]
public DateTime
deliverArriveDate
{ get; set; }
[JsonProperty("failureName")]
public string
failureName
{ get; set; }
[JsonProperty("itemName")]
public string
itemName
{ get; set; }
[JsonProperty("userMobile")]
public string
userMobile
{ get; set; }
[JsonProperty("serviceTypeId")]
public int
serviceTypeId
{ get; set; }
[JsonProperty("createDate")]
public DateTime
createDate
{ get; set; }
[JsonProperty("userTown")]
public string
userTown
{ get; set; }
[JsonProperty("brandName")]
public string
brandName
{ get; set; }
[JsonProperty("orderNo")]
public string
orderNo
{ get; set; }
[JsonProperty("saleOrderNo")]
public string
saleOrderNo
{ get; set; }
[JsonProperty("userCounty")]
public string
userCounty
{ get; set; }
[JsonProperty("userName")]
public string
userName
{ get; set; }
[JsonProperty("itemCatName")]
public string
itemCatName
{ get; set; }
[JsonProperty("userAddress")]
public string
userAddress
{ get; set; }
[JsonProperty("inOrOut")]
public int
inOrOut
{ get; set; }
[JsonProperty("qty")]
public int
qty
{ get; set; }
[JsonProperty("serviceTypeName")]
public string
serviceTypeName
{ get; set; }
[JsonProperty("userAreaId")]
public string
userAreaId
{ get; set; }
[JsonProperty("productSn")]
public string
productSn
{ get; set; }
}
}