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.
77 lines
1.4 KiB
77 lines
1.4 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 ElectronicPolicyDTO:JdObject{
|
|
[JsonProperty("purchaseOrderCode")]
|
|
public string
|
|
|
|
purchaseOrderCode
|
|
{ get; set; }
|
|
[JsonProperty("mark")]
|
|
public int
|
|
|
|
mark
|
|
{ get; set; }
|
|
[JsonProperty("brand")]
|
|
public string
|
|
|
|
brand
|
|
{ get; set; }
|
|
[JsonProperty("category")]
|
|
public string
|
|
|
|
category
|
|
{ get; set; }
|
|
[JsonProperty("sku")]
|
|
public string
|
|
|
|
sku
|
|
{ get; set; }
|
|
[JsonProperty("productName")]
|
|
public string
|
|
|
|
productName
|
|
{ get; set; }
|
|
[JsonProperty("orderAmount")]
|
|
public double
|
|
|
|
orderAmount
|
|
{ get; set; }
|
|
[JsonProperty("payAmount")]
|
|
public double
|
|
|
|
payAmount
|
|
{ get; set; }
|
|
[JsonProperty("orderCreateTime")]
|
|
public DateTime
|
|
|
|
orderCreateTime
|
|
{ get; set; }
|
|
[JsonProperty("orderLeaveStockTime")]
|
|
public DateTime
|
|
|
|
orderLeaveStockTime
|
|
{ get; set; }
|
|
[JsonProperty("payTime")]
|
|
public DateTime
|
|
|
|
payTime
|
|
{ get; set; }
|
|
[JsonProperty("finishOrderTime")]
|
|
public DateTime
|
|
|
|
finishOrderTime
|
|
{ get; set; }
|
|
[JsonProperty("serialNumber")]
|
|
public string
|
|
|
|
serialNumber
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|