using System; namespace LeaRun.Application.Entity { /// /// 版 本 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:佘赐雄 /// 日 期:2016.05.11 16:23 /// 描 述:注册账户 /// public class AccountEntity { /// /// 主键 /// public string AccountId { get; set; } /// /// 手机号码 /// public string MobileCode { get; set; } /// /// 验证码 /// public string SecurityCode { get; set; } /// /// 登录密码 /// public string Password { get; set; } /// /// 公司名称 /// public string CompanyName { get; set; } /// /// 姓名 /// public string FullName { get; set; } /// /// 注册时间 /// public DateTime? RegisterTime { get; set; } /// /// 到期时间 /// public DateTime? ExpireTime { get; set; } /// /// IPAddress /// public string IPAddress { get; set; } /// /// IPAddressName /// public string IPAddressName { get; set; } /// /// 删除标记 /// public int? DeleteMark { get; set; } /// /// 有效标志 /// public int? EnabledMark { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 创建日期 /// public DateTime? CreateDate { get; set; } /// /// 最后登录时间 /// public DateTime? LastVisit { get; set; } /// /// 登录次数 /// public int? LogOnCount { get; set; } /// /// 授权登录次数 /// public int? AmountCount { get; set; } } }