using NCC.Common.Const;
using SqlSugar;
using System;
namespace NCC.Frends.Entitys
{
///
/// 匹配记录
///
[SugarTable("base_mate_info")]
[Tenant(ClaimConst.TENANT_ID)]
public class BaseMateInfoEntity
{
///
/// 主键
///
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 手机号
///
[SugarColumn(ColumnName = "F_Phone")]
public string Phone { get; set; }
///
/// 学历
///
[SugarColumn(ColumnName = "F_Educational")]
public string Educational { get; set; }
///
/// 专业
///
[SugarColumn(ColumnName = "F_Major")]
public string Major { get; set; }
///
/// 性别
///
[SugarColumn(ColumnName = "F_Sex")]
public string Sex { get; set; }
///
/// 年龄
///
[SugarColumn(ColumnName = "F_Age")]
public string Age { get; set; }
///
/// 户籍
///
[SugarColumn(ColumnName = "F_CensusRegister")]
public string CensusRegister { get; set; }
///
/// 意向城市
///
[SugarColumn(ColumnName = "F_IntendedCity")]
public string IntendedCity { get; set; }
///
/// 描述
///
[SugarColumn(ColumnName = "F_Description")]
public string Description { get; set; }
///
/// 匹配时间
///
[SugarColumn(ColumnName = "F_CreatorTime")]
public DateTime? CreatorTime { get; set; }
///
/// 匹配用户
///
[SugarColumn(ColumnName = "F_CreatorUserId")]
public string CreatorUserId { get; set; }
///
/// 来源
///
[SugarColumn(ColumnName = "F_Source")]
public string Source { get; set; }
///
/// 是否下载
///
[SugarColumn(ColumnName = "F_IsDown")]
public int? IsDown { get; set; }
///
/// 下载时间
///
[SugarColumn(ColumnName = "F_DownTime")]
public DateTime? DownTime { get; set; }
///
/// 下载类型
///
[SugarColumn(ColumnName = "F_DownInfo")]
public string DownInfo { get; set; }
///
/// 订单号
///
[SugarColumn(ColumnName = "F_OrderNo")]
public string OrderNo { get; set; }
///
/// 匹配出的企业数
///
[SugarColumn(ColumnName = "F_MateCount")]
public int? MateCount { get; set; }
}
}