using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.RequestMod { public class RequestFeedPost { /// /// /// public string body { get;set; } /// /// 类型 /// public string type { get;set; } public string app_name { get;set; } /// /// 频道 /// public string channel { get;set; } /// /// 动态内容 /// public string content { get;set; } /// /// 附件ID拼接的ID /// public string attach_id { get;set; } /// /// /// public string video_id { get;set; } /// /// 视频URL /// public string videourl { get;set; } /// /// /// public string channel_id { get;set; } /// /// /// public string source_url { get;set; } /// /// /// public string gid { get;set; } } }