WeChatUserDto.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SnapshotWinFormsApp.Application.Dtos;
  7. public class WeChatUserDto
  8. {
  9. public string? openid { get; set; }
  10. public string WUR_Openid { get; set; }
  11. public int WUR_WebUserID { get; set; }
  12. public string WUR_WebUserName { get; set; }
  13. public string WUR_WebLoginName { get; set; }
  14. public string WUR_PhoneNum { get; set; }
  15. public string WUR_LoginPWD { get; set; }
  16. public string WUR_Gender { get; set; }
  17. public string WUR_IDCard { get; set; }
  18. public int WUR_AreaID { get; set; }
  19. public string WUR_Address { get; set; }
  20. public string WUR_Mail { get; set; }
  21. public string WUR_RegIP { get; set; }
  22. public DateTime WUR_RegDate { get; set; }
  23. public string? WUR_StateFlag { get; set; }
  24. public string WUR_LastIP { get; set; }
  25. public DateTime WUR_LastDate { get; set; }
  26. public string WUR_SyncState { get; set; }
  27. public string WUR_unionid { get; set; }
  28. public string WUR_Img { get; set; }
  29. public string WUR_UserType { get; set; }
  30. public int WUR_Flag { get; set; }
  31. public int UserID { get; set; }
  32. public string appid { get; set; }
  33. public int subscribe { get; set; }
  34. public string unionid { get; set; }
  35. public int IsSynchUnionID { get; set; }
  36. public DateTime InsertTime { get; set; }
  37. public DateTime UpdateTime { get; set; }
  38. }