123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class Account
- {
- private int _id;
- private string _wxopenid;
- private string _accountname;
- private string _accountpassword;
- private string _accountrealname;
- private string _accountphone;
- private string _accountheadpic;
- private string _accountnickname;
- private string _city;
- private string _address;
- private int _roleid;
- private bool _isdelete;
- private int _creationperson;
- private DateTime _creationdate;
- private int _lastmodifiedperson;
- private DateTime _lastmodified;
- private string _purstaffid;
- private string _rolename;
- private string _staffName;
- private string _pk;
- private DateTime? _LastLoginTime;
- private string _LastLoginIp;
- private string _Sup_OrgId;
- public Account()
- {
- }
- public int Id
- {
- get { return _id; }
- set { _id = value; }
- }
- public string WxOpenId
- {
- get { return _wxopenid; }
- set { _wxopenid = value; }
- }
- public string AccountName
- {
- get { return _accountname; }
- set { _accountname = value; }
- }
- public string AccountPassWord
- {
- get { return _accountpassword; }
- set { _accountpassword = value; }
- }
- public string AccountRealName
- {
- get { return _accountrealname; }
- set { _accountrealname = value; }
- }
- public string AccountPhone
- {
- get { return _accountphone; }
- set { _accountphone = value; }
- }
- public string AccountHeadPic
- {
- get { return _accountheadpic; }
- set { _accountheadpic = value; }
- }
- public string AccountNickName
- {
- get { return _accountnickname; }
- set { _accountnickname = value; }
- }
- public string City
- {
- get { return _city; }
- set { _city = value; }
- }
- public string Address
- {
- get { return _address; }
- set { _address = value; }
- }
- public int RoleId
- {
- get { return _roleid; }
- set { _roleid = value; }
- }
- public bool IsDelete
- {
- get { return _isdelete; }
- set { _isdelete = value; }
- }
- public int CreationPerson
- {
- get { return _creationperson; }
- set { _creationperson = value; }
- }
- public DateTime CreationDate
- {
- get { return _creationdate; }
- set { _creationdate = value; }
- }
- public int LastModifiedPerson
- {
- get { return _lastmodifiedperson; }
- set { _lastmodifiedperson = value; }
- }
- public DateTime LastModified
- {
- get { return _lastmodified; }
- set { _lastmodified = value; }
- }
- public string PurStaffId
- {
- get { return _purstaffid; }
- set { _purstaffid = value; }
- }
- public string RoleName { get => _rolename; set => _rolename = value; }
- private string _creater;
- public string Creater { get => _creater; set => _creater = value; }
- public string StaffName { get => _staffName; set => _staffName = value; }
- public string Pk { get => _pk; set => _pk = value; }
- public string LastLoginIp { get => _LastLoginIp; set => _LastLoginIp = value; }
- public DateTime? LastLoginTime { get => _LastLoginTime; set => _LastLoginTime = value; }
- public string Sup_OrgId { get => _Sup_OrgId; set => _Sup_OrgId = value; }
- }
- }
|