using Api.Framework.Tools;
using System;
namespace UserFission.Entitys
{
public class fl_plugin_userfission_applyfriend_info : base_model
{
public fl_plugin_userfission_applyfriend_info()
{
state = "待审核";
}
///
/// 机器人的name。 robotinfo中的name
///
public string robot_name { get; set; }
///
/// 机器人名称
///
public string user_nick { get; set; }
///
/// 申请时间
///
public DateTime crt_time { get; set; }
///
/// 申请通过时间
///
public DateTime allow_time { get; set; }
///
/// 申请时对方发送的验证信息
///
public string message { get; set; }
///
/// 申请人昵称
///
public string new_friend_nick { get; set; }
///
/// 申请人微信号
///
public string new_friend_wxid { get; set; }
///
/// 推荐人昵称
///
public string old_friend_nick { get; set; }
///
/// 推荐人微信号
///
public string old_friend_wxid { get; set; }
///
/// token
///
public string token { get; set; }
///
/// 状态
///
public string state { get; set; }
}
}