package main //项目中的字段 var FIELDS = []string{ "area", "city", "district", "projectname", "projectcode", "buyer", "buyerclass", "buyerperson", "buyertel", "winner", "agency", "topscopeclass", "subscopeclass", "package", } //招标信息字段 var INFOFIELDS = []string{ "projectname", "projectcode", "projectscope", "contractcode", "title", "href", "publishtime", "comeintime", "bidopentime", "toptype", "subtype", "buyer", "buyerclass", "agency", "winner", "winnertel", "winnerperson", "budget", "bidamount", "topscopeclass", "subscopclass", "infoformat", "buyerperson", "buyertel", "area", "city", "district", "spidercode", "site", "review_experts", "purchasing", "project_scale", "project_duration", "project_timeunit", "project_startdate", "project_completedate", "payway", "contract_guarantee", "bid_guarantee", "qualifies", //"entidlist", "tag_rule", } // 包信息 var PackageEle = []string{ "origin", "name", //"text", "budget", "winner", "bidamount", "bidamounttype", "currency", "bidstatus", } var bidstatus = map[string]string{ "采购意向": "采购意向", "预告": "预告", "中标": "中标", "成交": "成交", "废标": "废标", "流标": "流标", "合同": "合同", } var bidtype = map[string]string{ "招标": "招标", "邀标": "邀标", "询价": "询价", "单一": "单一", "竞价": "竞价", "竞谈": "竞谈", }