using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// WaitRateAlgoItem Data Structure. /// [Serializable] public class WaitRateAlgoItem : AopObject { /// /// 待评价算法打分itemId /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 算法打分分值 /// [XmlElement("score")] public long Score { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } } }