project_tool.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package main
  2. var DateTimeSelect = []string{"bidopentime", "bidendtime", "signaturedate", "comeintime"}
  3. // 项目中的字段
  4. var FIELDS = []string{
  5. "area",
  6. "city",
  7. "district",
  8. "projectname",
  9. "projectcode",
  10. "buyer",
  11. "buyerclass",
  12. "buyerperson",
  13. "buyertel",
  14. "winner",
  15. "agency",
  16. "topscopeclass",
  17. "subscopeclass",
  18. }
  19. // 招标信息字段
  20. var INFOFIELDS = []string{
  21. "projectname",
  22. "projectcode",
  23. "projectscope",
  24. "contractcode",
  25. "title",
  26. "href",
  27. "publishtime",
  28. "comeintime",
  29. "bidopentime",
  30. "toptype",
  31. "subtype",
  32. "buyer",
  33. "buyerclass",
  34. "agency",
  35. "winner",
  36. "winnertel",
  37. "winnerperson",
  38. "budget",
  39. "bidamount",
  40. "topscopeclass",
  41. "subscopeclass",
  42. "infoformat",
  43. "buyerperson",
  44. "buyertel",
  45. "area",
  46. "city",
  47. "district",
  48. "spidercode",
  49. "site",
  50. "review_experts",
  51. "purchasing",
  52. "project_scale",
  53. "project_duration",
  54. "project_timeunit",
  55. "project_startdate",
  56. "project_completedate",
  57. "payway",
  58. "contract_guarantee",
  59. "bid_guarantee",
  60. "qualifies",
  61. "entidlist",
  62. "winnerorder",
  63. "purchasinglist",
  64. "projectperiod",
  65. "basicClass",
  66. "est_purchase_time",
  67. "signaturedate",
  68. "expiredate",
  69. "docendtime",
  70. "docstarttime",
  71. "bidstarttime",
  72. }
  73. // 包信息
  74. var PackageEle = []string{
  75. "origin",
  76. "name",
  77. //"text",
  78. "budget",
  79. "winner",
  80. "bidamount",
  81. "bidamounttype",
  82. "currency",
  83. "bidstatus",
  84. }
  85. var bidstatus = map[string]string{
  86. "预告": "预告",
  87. "中标": "中标",
  88. "成交": "成交",
  89. "废标": "废标",
  90. "流标": "流标",
  91. "合同": "合同",
  92. }
  93. var bidtype = map[string]string{
  94. "招标": "招标",
  95. "邀标": "邀标",
  96. "询价": "询价",
  97. "单一": "单一",
  98. "竞价": "竞价",
  99. "竞谈": "竞谈",
  100. }