123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System;
- namespace Lottomat.Application.Entity
- {
-
-
-
-
-
-
-
- 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; }
-
-
-
- public string IPAddress { get; set; }
-
-
-
- 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; }
- }
- }
|