using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringPosStallDeleteModel Data Structure. /// [Serializable] public class KoubeiCateringPosStallDeleteModel : AopObject { /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 档口id /// [XmlElement("stall_id")] public string StallId { get; set; } } }