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.
63 lines
1.2 KiB
63 lines
1.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 JosReturnOrderLineBatchDTO:JdObject{
|
||
|
[JsonProperty("returnOrderCode")]
|
||
|
public string
|
||
|
|
||
|
returnOrderCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("jdSku")]
|
||
|
public string
|
||
|
|
||
|
jdSku
|
||
|
{ get; set; }
|
||
|
[JsonProperty("returnPrice")]
|
||
|
public string
|
||
|
|
||
|
returnPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("returnQuantity")]
|
||
|
public int
|
||
|
|
||
|
returnQuantity
|
||
|
{ get; set; }
|
||
|
[JsonProperty("purchasePrice")]
|
||
|
public string
|
||
|
|
||
|
purchasePrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("purchaseOrderCode")]
|
||
|
public string
|
||
|
|
||
|
purchaseOrderCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("purchaseDate")]
|
||
|
public DateTime
|
||
|
|
||
|
purchaseDate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("comments")]
|
||
|
public string
|
||
|
|
||
|
comments
|
||
|
{ get; set; }
|
||
|
[JsonProperty("createTime")]
|
||
|
public DateTime
|
||
|
|
||
|
createTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("updateTime")]
|
||
|
public DateTime
|
||
|
|
||
|
updateTime
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|