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

88 lines
1.8 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 BatchAttrProfit:JdObject{
[JsonProperty("expiration_date_lot")]
public string
expirationDateLot
{ get; set; }
[JsonProperty("production_date_lot")]
public string
productionDateLot
{ get; set; }
[JsonProperty("isPo")]
public string
isPo
{ get; set; }
[JsonProperty("isSupplier")]
public string
isSupplier
{ get; set; }
[JsonProperty("isRcvDate")]
public string
isRcvDate
{ get; set; }
[JsonProperty("isPLU")]
public string
isPLU
{ get; set; }
[JsonProperty("isLogisticCompany")]
public string
isLogisticCompany
{ get; set; }
[JsonProperty("isOrigin")]
public string
isOrigin
{ get; set; }
[JsonProperty("isLot")]
public string
isLot
{ get; set; }
[JsonProperty("isManufacturer")]
public string
isManufacturer
{ get; set; }
[JsonProperty("isPackageBatch")]
public string
isPackageBatch
{ get; set; }
[JsonProperty("isBoxNo")]
public string
isBoxNo
{ get; set; }
[JsonProperty("isNosale")]
public string
isNosale
{ get; set; }
[JsonProperty("gysgL")]
public string
gysgL
{ get; set; }
[JsonProperty("isStore")]
public string
isStore
{ get; set; }
}
}