using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringDishCommgroupQueryModel Data Structure. /// [Serializable] public class KoubeiCateringDishCommgroupQueryModel : AopObject { /// /// 需要查询的组id /// [XmlElement("comm_group_id")] public string CommGroupId { get; set; } /// /// 查询页码,表示第几页 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 分页大小,表示每页查询数量,不超过50 /// [XmlElement("page_size")] public string PageSize { get; set; } } }