WeChatUserEntity.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SnapshotWinFormsApp.Entities.OldHotline;
  8. [SugarTable("ZG_CityHotline_Web.dbo.Web30_UserRegister")]
  9. public class WeChatUserEntity
  10. {
  11. public string WUR_Openid { get; set; }
  12. public int WUR_WebUserID { get; set; }
  13. public string WUR_WebUserName { get; set; }
  14. public string WUR_WebLoginName { get; set; }
  15. public string WUR_PhoneNum { get; set; }
  16. public string WUR_LoginPWD { get; set; }
  17. public string WUR_Gender { get; set; }
  18. public string WUR_IDCard { get; set; }
  19. public int WUR_AreaID { get; set; }
  20. public string WUR_Address { get; set; }
  21. public string WUR_Mail { get; set; }
  22. public string WUR_RegIP { get; set; }
  23. public DateTime WUR_RegDate { get; set; }
  24. public int? WUR_StateFlag { get; set; }
  25. public string WUR_LastIP { get; set; }
  26. public DateTime WUR_LastDate { get; set; }
  27. public int WUR_SyncState { get; set; }
  28. public string WUR_unionid { get; set; }
  29. public string WUR_Img { get; set; }
  30. public string WUR_UserType { get; set; }
  31. public int WUR_Flag { get; set; }
  32. }