using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.WeixinServiceDate.Model { public class Model_DZKJ_CustomerAccount { public Model_DZKJ_CustomerAccount() { } long _ID; public long ID { get { return _ID; } set { _ID = value; } } string _Account = ""; public string Account { get { return _Account; } set { _Account = value; } } string _Password = ""; public string Password { get { return _Password; } set { _Password = value; } } string _Contacts = ""; public string Contacts { get { return _Contacts; } set { _Contacts = value; } } string _Telephone = ""; public string Telephone { get { return _Telephone; } set { _Telephone = value; } } int _Sex = 1; public int Sex { get { return _Sex; } set { _Sex = value; } } string _CompanyName = ""; public string CompanyName { get { return _CompanyName; } set { _CompanyName = value; } } string _CompanyAddress = ""; public string CompanyAddress { get { return _CompanyAddress; } set { _CompanyAddress = value; } } DateTime _PeriodOfValidity; public DateTime PeriodOfValidity { get { return _PeriodOfValidity; } set { _PeriodOfValidity = value; } } int _StartSimulatorCount = 10; public int StartSimulatorCount { get { return _StartSimulatorCount; } set { _StartSimulatorCount = value; } } string _HardwareCode = ""; public string HardwareCode { get { return _HardwareCode; } set { _HardwareCode = value; } } string _IP = ""; public string IP { get { return _IP; } set { _IP = value; } } DateTime _RegistrationTime = DateTime.Now; public DateTime RegistrationTime { get { return _RegistrationTime; } set { _RegistrationTime = value; } } DateTime _LatestLoginTime; public DateTime LatestLoginTime { get { return _LatestLoginTime; } set { _LatestLoginTime = value; } } int _IsEnabled = 1; /// /// 0 为禁用 1 为启用 /// public int IsEnabled { get { return _IsEnabled; } set { _IsEnabled = value; } } string _ManagerProgramVersion = ""; /// /// 理程序版本号 /// public string ManagerProgramVersion { get { return _ManagerProgramVersion; } set { _ManagerProgramVersion = value; } } string _SmallEifVersion = ""; /// /// 小精灵版本号 /// public string SmallEifVersion { get { return _SmallEifVersion; } set { _SmallEifVersion = value; } } long _DistributorID; /// /// 分销商ID /// public long DistributorID { get { return _DistributorID; } set { _DistributorID = value; } } } }