using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiRetailWmsGoodssafetyinventoryModifyModel Data Structure. /// [Serializable] public class KoubeiRetailWmsGoodssafetyinventoryModifyModel : AopObject { /// /// 货品安全库存 /// [XmlArray("goods_safety_inventorys")] [XmlArrayItem("goods_safety_inventory")] public List GoodsSafetyInventorys { get; set; } } }