12345678910111213141516171819202122232425262728293031323334 |
- package entity
- // 项目信息
- type ProjectInfo struct {
- Agency string `json:"agency"`
- Area string `json:"area"` //省份 字段:area
- Bidamount float64 `json:"bidamount"`
- Bidstatus string `json:"bidstatus"`
- Bidtype string `json:"bidtype"`
- Budget float64 `json:"budget"`
- Buyer string `json:"buyer"`
- BuyerClass string `json:"buyerclass"` //采购单位类型 字段:buyerclass
- City string `json:"city"` //城市 字段:city
- Entidlist []string `json:"entidlist"`
- Id string `json:"id"` //项目信息id
- Ids []string `json:"ids"`
- JgTime int64 `json:"jgtime"` //时间范围 字段:jgtime
- List []struct {
- Agency string `json:"agency"`
- Budget float64 `json:"budget"`
- Buyer string `json:"buyer"`
- Buyerclass string `json:"buyerclass"`
- City string `json:"city"`
- Subtype string `json:"subtype"`
- Title string `json:"title"`
- Toptype string `json:"toptype"`
- }
- ProjectName string `json:"projectname"` //项目名称 字段:projectname
- Purchasing string `json:"purchasing"` //标的物 字段:purchasing
- Industry string `json:"s_subscopeclass"` //行业 字段:subscopeclass
- Winners string `json:"s_winner"` //
- Sortprice float64 `json:"sortprice"` //优先是中标金额>其次是预算
- Winner string `json:"winner"` //中标企业
- }
|