using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RDH.Data.Models { public partial class UserInfo { public UserInfo Clone() { return new UserInfo { _key = this._key, _snapshotkey = this._snapshotkey, _address = this._address, _age = this._age, _clienttime = this._clienttime, _createby = this._createby, _createtime = this._createtime, _endtime = this._endtime, _flag = this._flag, _ifcardid = this._ifcardid, _isactive = this._isactive, _issupperuser = this._issupperuser, _usercode = this._usercode, _locationkey = this._locationkey, _loingtrytimes = this._loingtrytimes, _mobilephone = this._mobilephone, _name = this._name, _password = this._password, _pingerprintdata = this._pingerprintdata, _section = this._section, _sectionid = this._sectionid, _sectionkey = this._sectionkey, _servertime = this._servertime, _sex = this._sex, _starttime = this._starttime, _telphone = this._telphone, _userid = this._userid, _ext01 = this._ext01, _ext02 = this._ext02, _ext03 = this._ext03, _ext04 = this._ext04, _ext05 = this._ext05, _ext06 = this._ext06, _ext07 = this._ext07, _ext08 = this._ext08, _ext09 = this._ext09, _ext10 = this._ext10, }; } public override string ToString() { return this._name; } } }