电子药箱通讯服务端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

UserInfo.ext.cs 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RDH.Data.Models
  7. {
  8. public partial class UserInfo
  9. {
  10. public UserInfo Clone()
  11. {
  12. return new UserInfo
  13. {
  14. _key = this._key,
  15. _snapshotkey = this._snapshotkey,
  16. _address = this._address,
  17. _age = this._age,
  18. _clienttime = this._clienttime,
  19. _createby = this._createby,
  20. _createtime = this._createtime,
  21. _endtime = this._endtime,
  22. _flag = this._flag,
  23. _ifcardid = this._ifcardid,
  24. _isactive = this._isactive,
  25. _issupperuser = this._issupperuser,
  26. _usercode = this._usercode,
  27. _locationkey = this._locationkey,
  28. _loingtrytimes = this._loingtrytimes,
  29. _mobilephone = this._mobilephone,
  30. _name = this._name,
  31. _password = this._password,
  32. _pingerprintdata = this._pingerprintdata,
  33. _section = this._section,
  34. _sectionid = this._sectionid,
  35. _sectionkey = this._sectionkey,
  36. _servertime = this._servertime,
  37. _sex = this._sex,
  38. _starttime = this._starttime,
  39. _telphone = this._telphone,
  40. _userid = this._userid,
  41. _ext01 = this._ext01,
  42. _ext02 = this._ext02,
  43. _ext03 = this._ext03,
  44. _ext04 = this._ext04,
  45. _ext05 = this._ext05,
  46. _ext06 = this._ext06,
  47. _ext07 = this._ext07,
  48. _ext08 = this._ext08,
  49. _ext09 = this._ext09,
  50. _ext10 = this._ext10,
  51. };
  52. }
  53. public override string ToString()
  54. {
  55. return this._name;
  56. }
  57. }
  58. }