using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace AI.Platform.Core.Entity.System.VehicleTerminal.CardInfo
{
///
/// 卡信息表
///
[SugarTable(null, "卡信息表")]
public class CardInfoEntity : EntityBaseLite
{
///
/// 卡ID
///
public long Id { get; set; }
///
/// 发卡站点ID
///
[SugarColumn(IsNullable = true)]
public long? IssueSiteId { get; set; }
///
/// 卡类型:1-个人卡,2-企业卡,3-员工卡
///
[SugarColumn(IsNullable = true)]
public byte? CardType { get; set; }
///
/// 用户名称
///
[SugarColumn(IsNullable = true)]
public string UserName { get; set; }
///
/// 手机号
///
[SugarColumn(IsNullable = true)]
public string Mobile { get; set; }
///
/// 密码
///
[SugarColumn(IsNullable = true)]
public string Password { get; set; }
///
/// 发卡时间
///
public DateTime? IssueTime { get; set; }
///
/// 挂失时间
///
[SugarColumn(IsNullable = true)]
public DateTime? LossTime { get; set; }
///
/// 状态:1-正常,2-挂失,3-注销,4-冻结
///
public byte? Status { get; set; }
///
/// 卡号
///
public string CardNo { get; set; }
///
/// 账户id
///
public long? AccountId { get; set; }
}
}