using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseMcommentFootprintUploadModel Data Structure. /// [Serializable] public class AlipaySocialBaseMcommentFootprintUploadModel : AopObject { /// /// 足迹服务分配的业务码 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 扩展字段,某些特殊业务需要传的指 /// [XmlElement("ext_data")] public string ExtData { get; set; } /// /// 足迹内容的模版号 /// [XmlElement("footprint_model_code")] public string FootprintModelCode { get; set; } /// /// 模版的内容 /// [XmlElement("footprint_model_data")] public string FootprintModelData { get; set; } /// /// 产生足迹的unix毫秒时间戳 /// [XmlElement("footprint_time")] public long FootprintTime { get; set; } /// /// 在某个场景下的唯一键,比如appId/shopId /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 上报数据来源 /// [XmlElement("source")] public string Source { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }