|
@@ -57,8 +57,6 @@ func init() {
|
|
|
MongodbAddr: Sysconfig["mongodbServers"].(string),
|
|
|
Size: util.IntAll(Sysconfig["mongodbPoolSize"]),
|
|
|
DbName: Sysconfig["mongodbName"].(string),
|
|
|
- //UserName: "root",
|
|
|
- //Password: "root",
|
|
|
}
|
|
|
MongoTool.InitPool()
|
|
|
bidding, _ := Sysconfig["bidding"].(map[string]interface{})
|
|
@@ -345,12 +343,13 @@ type ProjectInfo struct {
|
|
|
BidGuarantee bool `json:"bid_guarantee"` //投标保证金 是否支持包含
|
|
|
Qualifies string `json:"qualifies"` //资质条件
|
|
|
EntIdList []string `json:"entidlist"` //企业id
|
|
|
- score int
|
|
|
- comStr string
|
|
|
- resVal, pjVal int
|
|
|
- InfoFiled map[string]InfoField `json:"infofield"` //逻辑处理需要的info字段
|
|
|
- Budgettag int `json:"budgettag"` //预算是否有效标记
|
|
|
- Bidamounttag int `json:"bidamounttag"` //中标金额是否有效标记
|
|
|
+ //FirstCooperation []string `json:"first_cooperation"` //first_cooperation
|
|
|
+ score int
|
|
|
+ comStr string
|
|
|
+ resVal, pjVal int
|
|
|
+ InfoFiled map[string]InfoField `json:"infofield"` //逻辑处理需要的info字段
|
|
|
+ Budgettag int `json:"budgettag"` //预算是否有效标记
|
|
|
+ Bidamounttag int `json:"bidamounttag"` //中标金额是否有效标记
|
|
|
}
|
|
|
|
|
|
//存储部分招标信息字段,业务逻辑处理需要
|