kf_app_correlation.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LoginModel
  7. {
  8. //kf_app_correlation
  9. public class kf_app_correlation
  10. {
  11. /// <summary>
  12. /// id
  13. /// </summary>
  14. public int id { get; set; } = 0;
  15. /// <summary>
  16. /// kf_id
  17. /// </summary>
  18. public string kf_id { get; set; } = "";
  19. /// <summary>
  20. /// app_type_name
  21. /// </summary>
  22. public string app_type_name { get; set; } = "";
  23. /// <summary>
  24. /// app_id
  25. /// </summary>
  26. public string app_id { get; set; } = "";
  27. /// <summary>
  28. /// app_kf_account
  29. /// </summary>
  30. public string app_kf_account { get; set; } = "";
  31. /// <summary>
  32. /// kf_app_correlation_time
  33. /// </summary>
  34. public long kf_app_correlation_time { get; set; } = 0;
  35. /// <summary>
  36. /// kf_app_expire_date
  37. /// </summary>
  38. public long kf_app_expire_date { get; set; } = 0;
  39. }
  40. }