using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.WeixinServiceDate.Model { public class Model_DZKJ_DistributorAccount { public Model_DZKJ_DistributorAccount() { } long _ID; public long ID { get { return _ID; } set { _ID = value; } } int _AccountID; public int AccountID { get { return _AccountID; } set { _AccountID = 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; } } int _StartSimulatorCount = 10; public int StartSimulatorCount { get { return _StartSimulatorCount; } set { _StartSimulatorCount = 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 _AppName = ""; /// /// AppName /// public string AppName { get { return _AppName; } set { _AppName = value; } } } }