using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringPosSpecSyncModel Data Structure.
///
[Serializable]
public class KoubeiCateringPosSpecSyncModel : AopObject
{
///
/// 菜品规格信息
///
[XmlElement("spec")]
public SpecEntity Spec { get; set; }
///
/// 规格ids,删除时传
///
[XmlArray("spec_ids")]
[XmlArrayItem("string")]
public List SpecIds { get; set; }
///
/// 操作类型 add 新增,update 修改,del 删除 ,其他返回null
///
[XmlElement("type")]
public string Type { get; set; }
}
}