project_tool.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "package",
  19. }
  20. //招标信息字段
  21. var INFOFIELDS = []string{
  22. "projectname",
  23. "projectcode",
  24. "projectscope",
  25. "contractcode",
  26. "title",
  27. "href",
  28. "publishtime",
  29. "comeintime",
  30. "bidopentime",
  31. "toptype",
  32. "subtype",
  33. "buyer",
  34. "buyerclass",
  35. "agency",
  36. "winner",
  37. "winnertel",
  38. "winnerperson",
  39. "budget",
  40. "bidamount",
  41. "topscopeclass",
  42. "subscopclass",
  43. "infoformat",
  44. "buyerperson",
  45. "buyertel",
  46. "area",
  47. "city",
  48. "district",
  49. "spidercode",
  50. "site",
  51. "review_experts",
  52. "purchasing",
  53. "project_scale",
  54. "project_duration",
  55. "project_timeunit",
  56. "project_startdate",
  57. "project_completedate",
  58. "payway",
  59. "contract_guarantee",
  60. "bid_guarantee",
  61. "qualifies",
  62. "entidlist",
  63. }
  64. // 包信息
  65. var PackageEle = []string{
  66. "origin",
  67. "name",
  68. //"text",
  69. "budget",
  70. "winner",
  71. "bidamount",
  72. "bidamounttype",
  73. "currency",
  74. "bidstatus",
  75. }
  76. var bidstatus = map[string]string{
  77. "预告": "预告",
  78. "中标": "中标",
  79. "成交": "成交",
  80. "废标": "废标",
  81. "流标": "流标",
  82. "合同": "合同",
  83. }
  84. var bidtype = map[string]string{
  85. "招标": "招标",
  86. "邀标": "邀标",
  87. "询价": "询价",
  88. "单一": "单一",
  89. "竞价": "竞价",
  90. "竞谈": "竞谈",
  91. }