using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
public partial class WeiBoList
{
///
/// 微博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; }
}
}