using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
public partial class WeiBoCommentList
{
///
/// 评论ID
///
public long W_Id { get; set; }
///
/// 评论内容
///
public string W_Text { get; set; }
///
/// 来源
///
public string W_Source { get; set; }
///
/// 来源 发布人
///
public string W_Name { get; set; }
///
/// 创建时间
///
public DateTime W_Created_at { get; set; }
///
/// 链接
///
public string W_Url { get; set; }
///
/// 所在位置
///
public string W_Location { get; set; }
}
}