project.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. package entity
  2. // 项目信息
  3. type ProjectInfo struct {
  4. Agency string `json:"agency"`
  5. Area string `json:"area"` //省份 字段:area
  6. Bidamount float64 `json:"bidamount"`
  7. Bidstatus string `json:"bidstatus"`
  8. Bidtype string `json:"bidtype"`
  9. Budget float64 `json:"budget"`
  10. Buyer string `json:"buyer"`
  11. BuyerClass string `json:"buyerclass"` //采购单位类型 字段:buyerclass
  12. City string `json:"city"` //城市 字段:city
  13. Entidlist []string `json:"entidlist"`
  14. Id string `json:"id"` //项目信息id
  15. Ids []string `json:"ids"`
  16. JgTime int64 `json:"jgtime"` //时间范围 字段:jgtime
  17. List []struct {
  18. Agency string `json:"agency"`
  19. Budget float64 `json:"budget"`
  20. Buyer string `json:"buyer"`
  21. Buyerclass string `json:"buyerclass"`
  22. City string `json:"city"`
  23. Subtype string `json:"subtype"`
  24. Title string `json:"title"`
  25. Toptype string `json:"toptype"`
  26. }
  27. ProjectName string `json:"projectname"` //项目名称 字段:projectname
  28. Purchasing string `json:"purchasing"` //标的物 字段:purchasing
  29. Industry string `json:"s_subscopeclass"` //行业 字段:subscopeclass
  30. Winners string `json:"s_winner"` //
  31. Sortprice float64 `json:"sortprice"` //优先是中标金额>其次是预算
  32. Winner string `json:"winner"` //中标企业
  33. }