using System;
namespace WX.CRM.Model.MAP
{
public class WX_WorkRCONTACT
{
public decimal PKID { get; set; }
public string JOBWXUSERNAME { get; set; }
public string USERNAME { get; set; }
public string ALIAS { get; set; }
public string CONREMARK { get; set; }
public string NICKNAME { get; set; }
///
/// 最后聊天时间
///
public decimal LASTCHARTIME { get; set; }
///
///关联wx_friendsrelation 的username
///
public string FUSERNAME { get; set; }
///
/// 关联wx_workaccount 的username
///
public string WUSERNAME { get; set; }
///
/// 关联wx_workaccount_note 的username
///
public string NUSERNAME { get; set; }
public decimal isblacklist { get; set; }
public decimal isunservedlist { get; set; }
public DateTime ctime { get; set; }
public int rtype { get; set; }
}
///
///
///
public class Wx_WorkGroupRcontact
{
///
/// 群名称
///
public string groupName { get; set; }
///
/// 群名称
///
public string shortName { get; set; }
///
/// 群号
///
public string chatRoomName { get; set; }
///
/// 群所属人
///
public string roomowner { get; set; }
///
/// 时间
///
public DateTime? createTime { get; set; }
///
/// 最近聊天时间
///
public decimal LASTCHARTIME { get; set; }
}
}