RequestloadMore.cs 858 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity.RequestMod
  7. {
  8. public class RequestloadMore
  9. {
  10. public int loadId
  11. {
  12. get; set;
  13. }
  14. public string type
  15. {
  16. get; set;
  17. }
  18. public string uid
  19. {
  20. get; set;
  21. }
  22. public string feed_type
  23. {
  24. get; set;
  25. }
  26. public string feed_key
  27. {
  28. get; set;
  29. }
  30. public string fgid
  31. {
  32. get; set;
  33. }
  34. public string topic_id
  35. {
  36. get; set;
  37. }
  38. public string load_count
  39. {
  40. get; set;
  41. }
  42. public string gid
  43. {
  44. get; set;
  45. }
  46. }
  47. }