1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 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",
- }
- // 招标信息字段
- var INFOFIELDS = []string{
- "projectname",
- "projectcode",
- "projectscope",
- "contractcode",
- "title",
- "href",
- "publishtime",
- "comeintime",
- "bidopentime",
- "toptype",
- "subtype",
- "buyer",
- "buyerclass",
- "agency",
- "winner",
- "winnertel",
- "winnerperson",
- "budget",
- "bidamount",
- "topscopeclass",
- "subscopeclass",
- "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",
- "winnerorder",
- "purchasinglist",
- }
- // 包信息
- var PackageEle = []string{
- "origin",
- "name",
- //"text",
- "budget",
- "winner",
- "bidamount",
- "bidamounttype",
- "currency",
- "bidstatus",
- }
- var bidstatus = map[string]string{
- "预告": "预告",
- "中标": "中标",
- "成交": "成交",
- "废标": "废标",
- "流标": "流标",
- "合同": "合同",
- }
- var bidtype = map[string]string{
- "招标": "招标",
- "邀标": "邀标",
- "询价": "询价",
- "单一": "单一",
- "竞价": "竞价",
- "竞谈": "竞谈",
- }
|