SzytDataModel.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using System.Collections.Generic;
  2. namespace Gs.DataPush.WebApi.ApiService
  3. {
  4. public class webService
  5. {
  6. public head head { get; set; }
  7. public request request { get; set; }
  8. }
  9. public class head
  10. {
  11. public string CardIndex { get; set; } = "";
  12. public string marketCode { get; set; } = "";
  13. public string marketName { get; set; } = "";
  14. public string tokenNo { get; set; } = "";
  15. }
  16. public class request
  17. {
  18. public List<QuickCheckItemJC> dataList { get; set; }
  19. }
  20. public class QuickCheckItemJC
  21. {
  22. public string JCCode { get; set; } = "";
  23. public string scCardIndex { get; set; } = "";
  24. public string scLicenseNo { get; set; } = "";
  25. public string scUnitName { get; set; } = "";
  26. public string DABH { get; set; } = "";
  27. public string PositionNo { get; set; } = "";
  28. public string Name { get; set; } = "";
  29. public string MarketType { get; set; } = "";
  30. public string SubItemCode { get; set; } = "";
  31. public string SubItemName { get; set; } = "";
  32. public string QuickCheckItemCode { get; set; } = "";
  33. public string QuickCheckSubItemCode { get; set; } = "";
  34. public string QuickCheckDate { get; set; } = "";
  35. public string QuickCheckResult { get; set; } = "";
  36. public string QuickCheckResultValue { get; set; } = "";
  37. public string QuickCheckResultValueUnit { get; set; } = "";
  38. public string QuickCheckResultValueCKarea { get; set; } = "";
  39. public string QuickCheckResultDependOn { get; set; } = "";
  40. public string QuickCheckRemarks { get; set; } = "";
  41. public string QuickChecker { get; set; } = "";
  42. public string QuickReChecker { get; set; } = "";
  43. public string QuickCheckUnitId { get; set; } = "";
  44. public string QuickCheckUnitName { get; set; } = "";
  45. public string JCManufactor { get; set; } = "";
  46. public string JCModel { get; set; } = "";
  47. public string JCSN { get; set; } = "";
  48. public string ReviewIs { get; set; } = "";
  49. }
  50. public class YtMarketInfo
  51. {
  52. public string CardIndex { get; set; } = "";
  53. public string LicenseNo { get; set; } = "";
  54. public string MarketName { get; set; } = "";
  55. public int MarketRef { get; set; }
  56. public string Abbreviation { get; set; }
  57. }
  58. public class YtMarketSellerInfo
  59. {
  60. public string PositionDistrictName { get; set; }
  61. public string PositionNo { get; set; }
  62. public string IsOperators { get; set; }
  63. public string scLicenseNo { get; set; }
  64. public string DABH { get; set; }
  65. public string scUnitName { get; set; }
  66. public string Contactor { get; set; }
  67. public string ContactTel { get; set; }
  68. }
  69. }