using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AirWheel.Cycling.Entity.ResponseMod { /// /// /// public class WebFeedPostList { /// /// 动态列表 /// public List feedList { get; set; } } /// /// 动态内容 /// public class WebFeed { /// /// /// public int feed_id { get; set; } /// /// 用户ID /// public int uid { get; set; } /// /// /// public string type { get; set; } /// /// /// public string app { get; set; } public string app_row_table { get; set; } /// /// 用户等级 /// public int userLevel { get; set; } /// /// 头像URL /// public string headurl { get; set; } /// /// 用户名 /// public string userName { get; set; } /// /// 昵称 /// public string trueName { get; set; } /// /// 动态内容 /// public string feedData { get; set; } /// /// 上传的图片地址 /// public List imageList { get; set; } /// /// 附件URL /// public string attachUrl { get; set; } /// /// 添加时间 /// public DateTime feedTime { get; set; } /// /// 点赞数量 /// public int diggNum { get; set; } /// /// 当前用户是否点过赞 /// public bool isDigg { get; set; } /// /// 来自平台 /// public int froms { get;set; } /// /// 评论数据 /// public int commentNum { get; set; } } }