12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package main
- var DateTimeSelect = []string{"bidopentime", "signaturedate", "project_completedate", "comeintime"}
- //项目中的字段
- 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",
- }
- // 包信息
- var PackageEle = []string{
- "origin",
- "name",
- //"text",
- "budget",
- "winner",
- "bidamount",
- "bidamounttype",
- "currency",
- "bidstatus",
- }
- var bidstatus = map[string]string{
- "预告": "预告",
- "中标": "中标",
- "成交": "成交",
- "废标": "废标",
- "流标": "流标",
- "合同": "合同",
- }
- var bidtype = map[string]string{
- "招标": "招标",
- "邀标": "邀标",
- "询价": "询价",
- "单一": "单一",
- "竞价": "竞价",
- "竞谈": "竞谈",
- }
|