project_tool.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package main
  2. //项目中的字段
  3. var FIELDS = []string{
  4. "area",
  5. "city",
  6. "district",
  7. "projectname",
  8. "projectcode",
  9. "buyer",
  10. "buyerclass",
  11. "buyerperson",
  12. "buyertel",
  13. "winner",
  14. "agency",
  15. "topscopeclass",
  16. "subscopeclass",
  17. "package",
  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. "subscopclass",
  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. "tag_rule",
  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. }
  85. var bidtype = map[string]string{
  86. "招标": "招标",
  87. "邀标": "邀标",
  88. "询价": "询价",
  89. "单一": "单一",
  90. "竞价": "竞价",
  91. "竞谈": "竞谈",
  92. }