123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package main
- var DateTimeSelect = []string{"bidopentime", "bidendtime", "signaturedate", "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",
- "tag_rule",
- }
- // 包信息
- var PackageEle = []string{
- "origin",
- "name",
- //"text",
- "budget",
- "winner",
- "bidamount",
- "bidamounttype",
- "currency",
- "bidstatus",
- }
- var bidstatus = map[string]string{
- "采购意向": "采购意向",
- "预告": "预告",
- "中标": "中标",
- "成交": "成交",
- "废标": "废标",
- "流标": "流标",
- "合同": "合同",
- }
- var bidtype = map[string]string{
- "招标": "招标",
- "邀标": "邀标",
- "询价": "询价",
- "单一": "单一",
- "竞价": "竞价",
- "竞谈": "竞谈",
- }
|