123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- 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;
- /// <summary>
- /// 0 为禁用 1 为启用
- /// </summary>
- public int IsEnabled
- {
- get { return _IsEnabled; }
- set { _IsEnabled = value; }
- }
- string _AppName = "";
- /// <summary>
- /// AppName
- /// </summary>
- public string AppName
- {
- get { return _AppName; }
- set { _AppName = value; }
- }
- }
- }
|