using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KbdishCookCateTopInfo Data Structure. /// [Serializable] public class KbdishCookCateTopInfo : AopObject { /// /// 口碑类目id /// [XmlElement("catetory_id")] public string CatetoryId { get; set; } /// /// 菜谱id /// [XmlElement("cook_id")] public string CookId { get; set; } /// /// 创建人 /// [XmlElement("create_user")] public string CreateUser { get; set; } /// /// 操作类型 top:置顶 cancelTop:取消置顶 /// [XmlElement("oper_type")] public string OperType { get; set; } /// /// 修改人 /// [XmlElement("update_user")] public string UpdateUser { get; set; } } }