12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package consts
- const (
- JudgmentPrev0 = iota //地区分布-省份
- JudgmentPrev1 //地区分布-城市
- JudgmentPrev2 //客户分布
- JudgmentPrev3 //项目数量TOP3客户类型的重点中标单位
- JudgmentPrev4 //项目规模分布-金额分布
- JudgmentPrev5 //项目数量-项目金额---TOP3地区的重点中标单位
- JudgmentPrev6 //订阅分类|重点中标单位-项目数量|重点中标单位-项目金额
- JudgmentPrev7 //采购单位--TOP30
- JudgmentPrev8 //采购规模分布-金额分布
- JudgmentPrev9 //中标单位--TOP30
- JudgmentPrev10 //中标规模分布-金额分布
- JudgmentPrev11 //月度分配|年度分配
- Top3 = 3
- Top10 = 10
- Top30 = 30
- MarketScaleMain = "marketanalysisreport_scal"
- MarketTopProject = "marketanalysisreport_top"
- MarketProjectAllData = "marketanalysisreport_all"
- MarketScaleRefine = "marketanalysisreport_refine"
- MarketBuyerAndWinner = "marketanalysisreport_bw"
- )
- var (
- //项目规模分布
- ProjectScale = []struct {
- Key string
- From float64
- To float64
- }{
- {
- "<10万",
- 0,
- 100000,
- }, {
- "10万-50万",
- 100000,
- 500000,
- }, {
- "50万-100万",
- 500000,
- 1000000,
- }, {
- "100万-500万",
- 1000000,
- 5000000,
- }, {
- "500万-1000万",
- 5000000,
- 10000000,
- }, {
- "1000万-1亿",
- 10000000,
- 100000000,
- }, {
- "≥1亿",
- 100000000,
- -1,
- },
- }
- BidStatus = []interface{}{"中标", "成交", "合同", "单一"}
- )
|