using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SpecEntity Data Structure. /// [Serializable] public class SpecEntity : AopObject { /// /// 新增不用传,修改必须传 /// [XmlElement("id")] public string Id { get; set; } /// /// 门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 规格名称 /// [XmlElement("spec_name")] public string SpecName { get; set; } /// /// 是否为系统默认规格,同步时,默认为false,设置不生效,只有查询现实时用 /// [XmlElement("system")] public bool System { get; set; } } }