Browse Source

小工具开发... 等其它修复程序...

zhengkun 1 year ago
parent
commit
9700bcd5c8
44 changed files with 23740 additions and 788 deletions
  1. 218 0
      data_college/src/global.go
  2. 50 0
      data_college/src/main.go
  3. 91 0
      data_college/src/merge.go
  4. 414 0
      data_college/src/mgo.go
  5. 87 0
      data_college/src/qyxy.go
  6. BIN
      data_college/src/regions.xlsx
  7. 188 0
      data_college/src/save.go
  8. 0 0
      data_kvtext/src/remark
  9. 3 0
      data_quality/src/main.go
  10. 65 0
      data_quality/src/qua_test/global_method.go
  11. 186 0
      data_quality/src/qua_test/init_region.go
  12. 35 0
      data_quality/src/qua_test/qua_analyze.go
  13. 31 0
      data_quality/src/qua_test/qua_bidopentime.go
  14. 51 0
      data_quality/src/qua_test/qua_projectcode.go
  15. 87 0
      data_quality/src/qua_test/qua_region.go
  16. 22 4
      data_quality/src/ul/initcfg.go
  17. 23 0
      data_tool/src/config.json
  18. 11 0
      data_tool/src/global.go
  19. 23 0
      data_tool/src/main.go
  20. 51 0
      data_tool/src/method.go
  21. BIN
      data_tool/src/res/源表.xlsx
  22. 144 0
      data_tool/src/tool_1.go
  23. 231 0
      data_tool/src/tool_2.go
  24. 84 0
      data_tower/src/main.go
  25. 107 0
      data_tower/src/read.go
  26. BIN
      data_tower/src/res/qlm.xlsx
  27. BIN
      data_tower/src/res/qlm_nh.xlsx
  28. 126 0
      data_tower/src/ul/initVar.go
  29. 414 0
      data_tower/src/ul/mgo.go
  30. 505 0
      data_tower/src/ul/mysql.go
  31. 292 0
      data_tower/src/write.go
  32. 1 1
      data_ylqx/src/main.go
  33. 156 75
      listen_data/src/main.go
  34. 12807 0
      listen_data/src/mark
  35. 21 21
      listen_data/src/mysql.go
  36. BIN
      listen_data/src/res/region1014.xlsx
  37. 720 0
      listen_data/src/res/判重数量.txt
  38. 1440 0
      listen_data/src/res/判重时间.txt
  39. BIN
      listen_data/src/res/史赛克品牌.xlsx
  40. 720 0
      listen_data/src/res/抽取数量.txt
  41. 1440 0
      listen_data/src/res/抽取时间.txt
  42. 720 0
      listen_data/src/res/清洗数量.txt
  43. 1440 0
      listen_data/src/res/清洗时间.txt
  44. 736 687
      listen_data/src/zkmethod.go

+ 218 - 0
data_college/src/global.go

@@ -0,0 +1,218 @@
+package main
+
+import (
+	"fmt"
+	log "github.com/donnie4w/go-logger/logger"
+	"github.com/tealeg/xlsx"
+	qu "qfw/util"
+	"sync"
+	"time"
+)
+
+var (
+	SaveMgo, QyxyMgo *MongodbSim
+	IsLocal, IsBack  bool
+	TimeLayout       = "2006-01-02"
+	TC_1, TC_2, TC_3 = 0, 0, 0
+)
+var PoolMgo = make(chan bool, 10)
+var WgMgo = &sync.WaitGroup{}
+var Regions = map[string]string{
+	"山东省":      "山东",
+	"浙江省":      "浙江",
+	"海南省":      "海南",
+	"江苏省":      "江苏",
+	"辽宁省":      "辽宁",
+	"黑龙江省":     "黑龙江",
+	"上海市":      "上海",
+	"吉林省":      "吉林",
+	"西藏自治区":    "西藏",
+	"北京市":      "北京",
+	"福建省":      "福建",
+	"河北省":      "河北",
+	"山西省":      "山西",
+	"天津市":      "天津",
+	"四川省":      "四川",
+	"广东省":      "广东",
+	"甘肃省":      "甘肃",
+	"安徽省":      "安徽",
+	"湖北省":      "湖北",
+	"贵州省":      "贵州",
+	"江西省":      "江西",
+	"宁夏回族自治区":  "宁夏",
+	"新疆维吾尔自治区": "新疆",
+	"重庆市":      "重庆",
+	"青海省":      "青海",
+	"云南省":      "云南",
+	"陕西省":      "陕西",
+	"湖南省":      "湖南",
+	"内蒙古自治区":   "内蒙古",
+	"河南省":      "河南",
+	"广西壮族自治区":  "广西",
+	"香港特别行政区":  "香港",
+	"澳门特别行政区":  "澳门",
+	"台湾省":      "台湾",
+}
+var SlectFields = map[string]interface{}{
+	"area":            1,
+	"city":            1,
+	"district":        1,
+	"s_topscopeclass": 1,
+	"publishtime":     1,
+	"toptype":         1,
+	"buyer":           1,
+	"s_winner":        1,
+	"budget":          1,
+	"bidamount":       1,
+	"extracttype":     1,
+}
+var TopClass = map[string]interface{}{
+	"建筑工程": 1,
+	"水利水电": 1,
+	"能源化工": 1,
+	"弱电安防": 1,
+	"信息技术": 1,
+	"行政办公": 1,
+	"机械设备": 1,
+	"交通工程": 1,
+	"医疗卫生": 1,
+	"市政设施": 1,
+	"服务采购": 1,
+	"农林牧渔": 1,
+	"其他行业": 1,
+}
+
+// 定义统计的属性
+type EgeInfo struct {
+	total                 int            //数据量
+	budget_null           int            //无预算数据量
+	budget_zero           int            //预算为0的数据量(条数累加)
+	bidamount_null        int            //无中标金额数据量
+	bidamount_zero        int            //中标金额为0的数据量
+	budget_sum            float64        //预算金额合计
+	bidamount_sum         float64        //中标金额合计
+	bidamount_null_buyer  int            //无中标金额的招标单位数量
+	bidamount_zero_buyer  int            //中标金额为0的招标单位数量
+	bidamount_null_winner int            //无中标金额的中标单位数量
+	bidamount_zero_winner int            //中标金额为0的中标单位数量
+	buyer_count           int            //招标单位数量
+	winner_count          int            //中标单位数量
+	all_winners           map[string]int //所有中标单位-计数...
+}
+
+// 记录所有信息...
+var GlobalInfos = map[string]*EgeInfo{}
+var GlobalArrs = []string{}
+
+// 初始化mgo
+func initMgoInfo() {
+	if IsLocal {
+		SaveMgo = &MongodbSim{
+			MongodbAddr: "127.0.0.1:12005",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		SaveMgo.InitPoolDirect()
+
+		QyxyMgo = &MongodbSim{
+			MongodbAddr: "127.0.0.1:12005",
+			DbName:      "mixdata",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		QyxyMgo.InitPoolDirect()
+
+	} else {
+		SaveMgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		SaveMgo.InitPool()
+
+		QyxyMgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "mixdata",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		QyxyMgo.InitPool()
+	}
+}
+
+func initGlobalVar() {
+	initMgoInfo()
+}
+
+func loadGlobalInfos() {
+	regionArr := initRegion()
+	log.Debug("地域~", len(regionArr))
+	yearArr := []string{"2022", "2021", "2020", "2019", "2018", "2017", "2016", "2015", "2014", "2013", "2012"}
+	topclassArr := []string{"建筑工程", "水利水电", "能源化工", "弱电安防", "信息技术", "行政办公", "机械设备", "交通工程", "医疗卫生", "市政设施", "服务采购", "农林牧渔", "其他行业"}
+	toptypeArr := []string{"招标", "结果", "拟建"}
+	total := 0
+	log.Debug("预计模型量···", len(regionArr)*len(yearArr)*len(topclassArr)*len(toptypeArr))
+	for _, v := range regionArr {
+		area := qu.ObjToString(v["area"])
+		city := qu.ObjToString(v["city"])
+		district := qu.ObjToString(v["district"])
+		for _, v1 := range yearArr {
+			for _, v2 := range topclassArr {
+				for _, v3 := range toptypeArr {
+					total++
+					key := getSKey(area, city, district, v1, v2, v3)
+					GlobalInfos[key] = &EgeInfo{}
+					GlobalArrs = append(GlobalArrs, key)
+				}
+			}
+		}
+	}
+	log.Debug("模型构建完毕...", len(GlobalInfos))
+}
+
+func initRegion() []map[string]string {
+	ff, _ := xlsx.OpenFile("regions.xlsx")
+	index := 0
+	res := []map[string]string{}
+	for _, sheet := range ff.Sheets {
+		for k, row := range sheet.Rows {
+			if k == 0 {
+				continue
+			}
+			var arr []string
+			for _, cell := range row.Cells {
+				arr = append(arr, cell.String())
+			}
+			index++
+			res = append(res, map[string]string{
+				"area":     Regions[arr[0]],
+				"city":     arr[1],
+				"district": arr[2],
+			})
+		}
+	}
+	return res
+}
+
+func getSKey(area string, city string, district string, year string, topclass string, toptype string) string {
+	return area + "_" + city + "_" + district + "_" + year + "_" + topclass + "_" + toptype
+}
+
+func getAllKeys(area string, city string, district string, ptime int64, ts []string, toptype string) []string {
+	keys := []string{}
+	year := ""
+	if ptime > 0 {
+		year = fmt.Sprintf("%d", time.Unix(ptime, 0).Year())
+	}
+	for _, v := range ts {
+		key := area + "_" + city + "_" + district + "_" + year + "_" + v + "_" + toptype
+		keys = append(keys, key)
+	}
+	return keys
+}

+ 50 - 0
data_college/src/main.go

@@ -0,0 +1,50 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+)
+
+func init() {
+	//IsLocal = true
+	initGlobalVar()
+	loadGlobalInfos() //加载基础模型
+	log.Debug("初始化完毕···")
+}
+
+func main() {
+	//合并数据
+	//MergeEgeFullInfo()
+	//补充数据
+	//SupQyxyEgeInfo()
+	lock := make(chan bool)
+	<-lock
+	//测试bidding_back数据
+	//IsBack = true
+	//JiSuanCollegeInfo("100000000000000000000000", "900000000000000000000000")
+	//SaveEgeInfo("zktest_zzzzzzkkk_00")
+	//return
+	return
+	//划分段落...bidding表  4000W一个段落
+	bidding_ids := []map[string]string{}
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "100000000000000000000000", "ltid": "5eb94026511b12033770b86c"})
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "5eb94026511b12033770b86c", "ltid": "6102193b1a75b8f4461bfc2a"})
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "6102193b1a75b8f4461bfc2a", "ltid": "6295859e923488e17268b47e"})
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "6295859e923488e17268b47e", "ltid": "6396a450063a7b816eff47d9"})
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "6396a450063a7b816eff47d9", "ltid": "64be3e4255d540690586db65"})
+	bidding_ids = append(bidding_ids, map[string]string{"gteid": "64be3e4255d540690586db65", "ltid": "900000000000000000000000"})
+
+	bidding_save := []string{}
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_01")
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_02")
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_03")
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_04")
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_05")
+	bidding_save = append(bidding_save, "zktest_zzzzzzkkk_06")
+
+	//先测试内存···看看多大···
+	JiSuanCollegeInfo(bidding_ids[5]["gteid"], bidding_ids[5]["ltid"])
+	SaveEgeInfo(bidding_save[5])
+
+	//lock := make(chan bool)
+	//<-lock
+}

+ 91 - 0
data_college/src/merge.go

@@ -0,0 +1,91 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	"go.mongodb.org/mongo-driver/bson"
+	qu "qfw/util"
+	"strings"
+)
+
+// 合并数据···
+func MergeEgeFullInfo() {
+	NameArr := []string{
+		"zktest_zzzzzzkkk_00",
+		"zktest_zzzzzzkkk_01",
+		"zktest_zzzzzzkkk_02",
+		"zktest_zzzzzzkkk_03",
+		"zktest_zzzzzzkkk_04",
+		"zktest_zzzzzzkkk_05",
+		"zktest_zzzzzzkkk_06",
+	}
+	for _, v := range NameArr {
+		dataArr, _ := SaveMgo.Find(v, bson.M{}, nil, nil)
+		log.Debug(v, "~", len(dataArr))
+		if dataArr != nil {
+			dealWithMergeInfo(dataArr)
+		}
+	}
+	log.Debug("开始保存数据...", len(GlobalArrs))
+	for k, v := range GlobalArrs {
+		if k%5000 == 0 {
+			log.Debug("is save ", k)
+		}
+		keyArr := strings.Split(v, "_")
+		info := map[string]interface{}{}
+		ege := GlobalInfos[v]
+		area, city, district, year, topclass, toptype := keyArr[0], keyArr[1], keyArr[2], keyArr[3], keyArr[4], keyArr[5]
+		info["skey"] = v
+		info["area"] = area
+		info["city"] = city
+		info["district"] = district
+		info["year"] = year
+		info["topclass"] = topclass
+		info["toptype"] = toptype
+		info["total"] = ege.total
+		info["budget_null"] = ege.budget_null
+		info["budget_zero"] = ege.budget_zero
+		info["bidamount_null"] = ege.bidamount_null
+		info["bidamount_zero"] = ege.bidamount_zero
+		info["budget_sum"] = ege.budget_sum
+		info["bidamount_sum"] = ege.bidamount_sum
+		info["bidamount_null_buyer"] = ege.bidamount_null_buyer
+		info["bidamount_zero_buyer"] = ege.bidamount_zero_buyer
+		info["bidamount_null_winner"] = ege.bidamount_null_winner
+		info["bidamount_zero_winner"] = ege.bidamount_zero_winner
+		info["buyer_count"] = ege.buyer_count
+		info["winner_count"] = ege.winner_count
+		info["all_winners"] = ege.all_winners
+		SaveMgo.Save("zktest_zzzzzzkkk_all", info)
+	}
+	log.Debug("合并保存数据结束...")
+}
+
+func dealWithMergeInfo(dataArr []map[string]interface{}) {
+	for _, v := range dataArr {
+		skey := qu.ObjToString(v["skey"])
+		infos := GlobalInfos[skey]
+		infos.total += qu.IntAll(v["total"])
+		infos.budget_null += qu.IntAll(v["budget_null"])
+		infos.budget_zero += qu.IntAll(v["budget_zero"])
+		infos.bidamount_null += qu.IntAll(v["bidamount_null"])
+		infos.bidamount_zero += qu.IntAll(v["bidamount_zero"])
+		infos.budget_sum += qu.Float64All(v["budget_sum"])
+		infos.bidamount_sum += qu.Float64All(v["bidamount_sum"])
+		infos.bidamount_null_buyer += qu.IntAll(v["bidamount_null_buyer"])
+		infos.bidamount_zero_buyer += qu.IntAll(v["bidamount_zero_buyer"])
+		infos.bidamount_null_winner += qu.IntAll(v["bidamount_null_winner"])
+		infos.bidamount_zero_winner += qu.IntAll(v["bidamount_zero_winner"])
+		infos.buyer_count += qu.IntAll(v["buyer_count"])
+		infos.winner_count += qu.IntAll(v["winner_count"])
+		//合并map数据···
+		if infos.all_winners == nil {
+			infos.all_winners = map[string]int{}
+		}
+		all_winners := qu.ObjToMap(v["all_winners"])
+		if all_winners != nil {
+			for k1, v1 := range *all_winners {
+				infos.all_winners[k1] = infos.all_winners[k1] + qu.IntAll(v1)
+			}
+		}
+	}
+}

+ 414 - 0
data_college/src/mgo.go

@@ -0,0 +1,414 @@
+package main
+
+import (
+	"context"
+	"log"
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson"
+	"go.mongodb.org/mongo-driver/bson/primitive"
+	"go.mongodb.org/mongo-driver/mongo"
+	"go.mongodb.org/mongo-driver/mongo/options"
+)
+
+type MgoSess struct {
+	Db     string
+	Coll   string
+	Query  interface{}
+	Sorts  []string
+	fields interface{}
+	limit  int64
+	skip   int64
+	M      *MongodbSim
+}
+
+type MgoIter struct {
+	Cursor *mongo.Cursor
+}
+
+func (mt *MgoIter) Next(result interface{}) bool {
+	if mt.Cursor != nil {
+		if mt.Cursor.Next(nil) {
+			err := mt.Cursor.Decode(result)
+			if err != nil {
+				log.Println("mgo cur err", err.Error())
+				mt.Cursor.Close(nil)
+				return false
+			}
+			return true
+		} else {
+			mt.Cursor.Close(nil)
+			return false
+		}
+	} else {
+		return false
+	}
+
+}
+
+func (ms *MgoSess) DB(name string) *MgoSess {
+	ms.Db = name
+	return ms
+}
+
+func (ms *MgoSess) C(name string) *MgoSess {
+	ms.Coll = name
+	return ms
+}
+
+func (ms *MgoSess) Find(q interface{}) *MgoSess {
+	ms.Query = q
+	return ms
+}
+
+func (ms *MgoSess) Select(fields interface{}) *MgoSess {
+	ms.fields = fields
+	return ms
+}
+
+func (ms *MgoSess) Limit(limit int64) *MgoSess {
+	ms.limit = limit
+	return ms
+}
+func (ms *MgoSess) Skip(skip int64) *MgoSess {
+	ms.skip = skip
+	return ms
+}
+
+func (ms *MgoSess) Sort(sorts ...string) *MgoSess {
+	ms.Sorts = sorts
+	return ms
+}
+
+func (ms *MgoSess) Iter() *MgoIter {
+	it := &MgoIter{}
+	find := options.Find()
+	if ms.skip > 0 {
+		find.SetSkip(ms.skip)
+	}
+	if ms.limit > 0 {
+		find.SetLimit(ms.limit)
+	}
+	find.SetBatchSize(100)
+	if len(ms.Sorts) > 0 {
+		sort := bson.M{}
+		for _, k := range ms.Sorts {
+			switch k[:1] {
+			case "-":
+				sort[k[1:]] = -1
+			case "+":
+				sort[k[1:]] = 1
+			default:
+				sort[k] = 1
+			}
+		}
+		find.SetSort(sort)
+	}
+	if ms.fields != nil {
+		find.SetProjection(ms.fields)
+	}
+	cur, err := ms.M.C.Database(ms.Db).Collection(ms.Coll).Find(ms.M.Ctx, ms.Query, find)
+	if err != nil {
+		log.Println("mgo find err", err.Error())
+	} else {
+		it.Cursor = cur
+	}
+	return it
+}
+
+type MongodbSim struct {
+	MongodbAddr string
+	Size        int
+	//	MinSize     int
+	DbName   string
+	C        *mongo.Client
+	Ctx      context.Context
+	ShortCtx context.Context
+	pool     chan bool
+	UserName string
+	Password string
+}
+
+func (m *MongodbSim) GetMgoConn() *MgoSess {
+	//m.Open()
+	ms := &MgoSess{}
+	ms.M = m
+	return ms
+}
+
+func (m *MongodbSim) DestoryMongoConn(ms *MgoSess) {
+	//m.Close()
+	ms.M = nil
+	ms = nil
+}
+
+func (m *MongodbSim) InitPoolDirect() {
+	opts := options.Client()
+	opts.SetConnectTimeout(3 * time.Second)
+	opts.ApplyURI("mongodb://" + m.MongodbAddr)
+	opts.SetMaxPoolSize(uint64(m.Size))
+	opts.SetDirect(true)
+	m.pool = make(chan bool, m.Size)
+
+	if m.UserName != "" && m.Password != "" {
+		cre := options.Credential{
+			Username:   m.UserName,
+			Password:   m.Password,
+			AuthSource: "admin",
+		}
+		opts.SetAuth(cre)
+	}
+
+	opts.SetMaxConnIdleTime(2 * time.Hour)
+	m.Ctx, _ = context.WithTimeout(context.Background(), 99999*time.Hour)
+	m.ShortCtx, _ = context.WithTimeout(context.Background(), 1*time.Minute)
+	client, err := mongo.Connect(m.ShortCtx, opts)
+	if err != nil {
+		log.Println("mgo init error:", err.Error())
+	} else {
+		m.C = client
+		log.Println("init success")
+	}
+}
+
+func (m *MongodbSim) InitPool() {
+	opts := options.Client()
+	opts.SetConnectTimeout(3 * time.Second)
+	opts.ApplyURI("mongodb://" + m.MongodbAddr)
+	opts.SetMaxPoolSize(uint64(m.Size))
+	//opts.SetDirect(true)
+	m.pool = make(chan bool, m.Size)
+
+	if m.UserName != "" && m.Password != "" {
+		cre := options.Credential{
+			Username:   m.UserName,
+			Password:   m.Password,
+			AuthSource: "admin",
+		}
+		opts.SetAuth(cre)
+	}
+
+	opts.SetMaxConnIdleTime(2 * time.Hour)
+	m.Ctx, _ = context.WithTimeout(context.Background(), 99999*time.Hour)
+	m.ShortCtx, _ = context.WithTimeout(context.Background(), 1*time.Minute)
+	client, err := mongo.Connect(m.ShortCtx, opts)
+	if err != nil {
+		log.Println("mgo init error:", err.Error())
+	} else {
+		m.C = client
+		log.Println("init success")
+	}
+}
+
+func (m *MongodbSim) Open() {
+	m.pool <- true
+}
+func (m *MongodbSim) Close() {
+	<-m.pool
+}
+
+// 新建表并生成索引
+func (m *MongodbSim) CreateIndex(c string, models []mongo.IndexModel) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	names, err := coll.Indexes().CreateMany(m.Ctx, models)
+	if err == nil && len(names) > 0 {
+		return true
+	} else {
+		log.Println("CreateIndex Error:", err)
+		return false
+	}
+}
+
+// 批量插入
+func (m *MongodbSim) UpSertBulk(c string, doc ...[]map[string]interface{}) (map[int64]interface{}, bool) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	var writes []mongo.WriteModel
+	for _, d := range doc {
+		write := mongo.NewUpdateOneModel()
+		write.SetFilter(d[0])
+		write.SetUpdate(d[1])
+		write.SetUpsert(true)
+		writes = append(writes, write)
+	}
+	r, e := coll.BulkWrite(m.Ctx, writes)
+	if e != nil {
+		log.Println("mgo upsert error:", e.Error())
+		return nil, false
+	}
+	//	else {
+	//		if r.UpsertedCount != int64(len(doc)) {
+	//			log.Println("mgo upsert uncomplete:uc/dc", r.UpsertedCount, len(doc))
+	//		}
+	//		return true
+	//	}
+	return r.UpsertedIDs, true
+}
+
+// 批量插入
+func (m *MongodbSim) SaveBulk(c string, doc ...map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	var writes []mongo.WriteModel
+	for _, d := range doc {
+		write := mongo.NewInsertOneModel()
+		write.SetDocument(d)
+		writes = append(writes, write)
+	}
+	_, e := coll.BulkWrite(m.Ctx, writes)
+	if e != nil {
+		log.Println("mgo savebulk error:", e.Error())
+		return false
+	}
+	return true
+}
+
+// 保存
+func (m *MongodbSim) Save(c string, doc map[string]interface{}) interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.InsertOne(m.Ctx, doc)
+	if err != nil {
+		return nil
+	}
+	return r.InsertedID
+}
+
+// 更新by Id
+func (m *MongodbSim) UpdateById(c, id string, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)}, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+func (m *MongodbSim) UpdateStrId(c, id string, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, map[string]interface{}{"_id": id}, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+func (m *MongodbSim) UpdateQueryData(c string, query map[string]interface{}, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, query, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+// 删除by id
+func (m *MongodbSim) DeleteById(c, id string) int64 {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.DeleteOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)})
+	if err != nil {
+		return 0
+	}
+	return r.DeletedCount
+}
+
+// 通过条件删除
+func (m *MongodbSim) Delete(c string, query map[string]interface{}) int64 {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.DeleteMany(m.Ctx, query)
+	if err != nil {
+		return 0
+	}
+	return r.DeletedCount
+}
+
+// findbyid
+func (m *MongodbSim) FindById(c, id string) map[string]interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r := coll.FindOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)})
+	v := map[string]interface{}{}
+	r.Decode(&v)
+	return v
+}
+
+// findone
+func (m *MongodbSim) FindOne(c string, query map[string]interface{}) map[string]interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r := coll.FindOne(m.Ctx, query)
+	v := map[string]interface{}{}
+	r.Decode(&v)
+	return v
+}
+
+// find
+func (m *MongodbSim) Find(c string, query map[string]interface{}, sort, fields interface{}) ([]map[string]interface{}, error) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	op := options.Find()
+	r, err := coll.Find(m.Ctx, query, op.SetSort(sort), op.SetProjection(fields))
+	if err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+
+	var results []map[string]interface{}
+	if err = r.All(m.Ctx, &results); err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+	return results, nil
+}
+
+// find
+func (m *MongodbSim) FindLimit(c string, query map[string]interface{}, sort, fields interface{}, limit int64) ([]map[string]interface{}, error) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	op := options.Find()
+	r, err := coll.Find(m.Ctx, query, op.SetSort(sort), op.SetProjection(fields), op.SetLimit(limit))
+	if err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+
+	var results []map[string]interface{}
+	if err = r.All(m.Ctx, &results); err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+	return results, nil
+}
+
+// 创建_id
+func NewObjectId() primitive.ObjectID {
+	return primitive.NewObjectID()
+}
+
+func StringTOBsonId(id string) primitive.ObjectID {
+	objectId, _ := primitive.ObjectIDFromHex(id)
+	return objectId
+}
+
+func BsonTOStringId(id interface{}) string {
+	return id.(primitive.ObjectID).Hex()
+}

+ 87 - 0
data_college/src/qyxy.go

@@ -0,0 +1,87 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	qu "qfw/util"
+)
+
+// 计算企业信息···
+func SupQyxyEgeInfo() {
+	log.Debug("开始补充企业统计...")
+	sess := SaveMgo.GetMgoConn()
+	defer SaveMgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	c_name := "zktest_zzzzzzkkk_all"
+	it := sess.DB(SaveMgo.DbName).C(c_name).Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur idx ", total, "~", tmp["_id"])
+		}
+		//结果类数据...
+		if tmp["all_winners"] != nil {
+			QyZbExists, QyGmExists := 0, 0
+			QyZbSum, QyGmSum := float64(0), 0
+			if all_winner := qu.ObjToMap(tmp["all_winners"]); all_winner != nil {
+				tmpid := BsonTOStringId(tmp["_id"])
+				for k, v := range *all_winner {
+					if k == "" {
+						continue
+					}
+					infoArr, _ := QyxyMgo.Find("qyxy_std", map[string]interface{}{
+						"company_name": k,
+					}, nil, nil)
+					if infoArr != nil {
+						if len(infoArr) > 0 {
+							index := getOneBaseCompany(infoArr)
+							info := infoArr[index]
+							capital := qu.Float64All(info["capital"])
+							employee_num := qu.IntAll(info["employee_num"])
+							if capital > float64(0) {
+								QyZbExists += qu.IntAll(v)
+								QyZbSum += capital * float64(10000) * qu.Float64All(v)
+							}
+							if employee_num > 0 {
+								QyGmExists += qu.IntAll(v)
+								QyGmSum += employee_num * qu.IntAll(v)
+							}
+						}
+					}
+				}
+				//更新表信息···
+				if tmpid != "" {
+					SaveMgo.UpdateById(c_name, tmpid, map[string]interface{}{
+						"$set": map[string]interface{}{
+							"qyzb_exists": QyZbExists,
+							"qygm_exists": QyGmExists,
+							"qyzb_sum":    QyZbSum,
+							"qygm_sum":    QyGmSum,
+						},
+					})
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("遍历数据结束...", total)
+}
+
+// 获取最优企业
+func getOneBaseCompany(arr []map[string]interface{}) int {
+	index := 0
+	flag := 100
+	if len(arr) > 1 {
+		for k, tmp := range arr {
+			use_flag := qu.IntAll(tmp["use_flag"])
+			if use_flag == 0 {
+				index = k
+				break
+			} else {
+				if use_flag < flag {
+					flag = use_flag
+					index = k
+				}
+			}
+		}
+	}
+	return index
+}

BIN
data_college/src/regions.xlsx


+ 188 - 0
data_college/src/save.go

@@ -0,0 +1,188 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	qu "qfw/util"
+	"strings"
+)
+
+// 计算学员数据
+func JiSuanCollegeInfo(gteid string, ltid string) {
+	sess := SaveMgo.GetMgoConn()
+	defer SaveMgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId(gteid),
+			"$lt":  StringTOBsonId(ltid),
+		},
+	}, 0
+	c_name := "bidding"
+	if IsBack {
+		c_name = "bidding_back"
+	}
+	log.Debug("开始遍历数据...", q, c_name)
+	it := sess.DB(SaveMgo.DbName).C(c_name).Find(&q).Select(SlectFields).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur idx ", total, TC_1, TC_2, TC_3, "~", tmp["_id"])
+		}
+		extracttype := qu.IntAll(tmp["extracttype"])
+		if extracttype == 1 {
+			dealWithInfo(tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("遍历数据结束...", total, TC_1, TC_2, TC_3)
+}
+
+// 处理数据
+func dealWithInfo(tmp map[string]interface{}) {
+	area := qu.ObjToString(tmp["area"])
+	city := qu.ObjToString(tmp["city"])
+	district := qu.ObjToString(tmp["district"])
+	ptime := qu.Int64All(tmp["publishtime"])
+	topclass := qu.ObjToString(tmp["s_topscopeclass"])
+	if topclass == "" {
+		topclass = "其他行业"
+	}
+	ts := strings.Split(topclass, ",")
+	toptype := qu.ObjToString(tmp["toptype"])
+	isbudget, budget := false, float64(0)
+	if tmp["budget"] != nil {
+		isbudget = true
+	}
+	budget = qu.Float64All(tmp["budget"])
+
+	isbidamount, bidamount := false, float64(0)
+	if tmp["bidamount"] != nil {
+		isbidamount = true
+	}
+	bidamount = qu.Float64All(tmp["bidamount"])
+
+	buyer := qu.ObjToString(tmp["buyer"])
+	s_winner := qu.ObjToString(tmp["s_winner"])
+	s_win_arr := strings.Split(s_winner, ",")
+	keys := getAllKeys(area, city, district, ptime, ts, toptype)
+
+	for idx, key := range keys {
+		if GlobalInfos[key] == nil {
+			continue
+		}
+		if idx == 0 { //全局数据一条标讯只计算一次
+			if len(ts) == 1 {
+				TC_1 = TC_1 + 1
+			} else if len(ts) == 2 {
+				TC_2 = TC_2 + 1
+			} else {
+				TC_3 = TC_3 + 1
+			}
+		}
+		//计算数据......
+		info := GlobalInfos[key]
+		//总数量
+		info.total += 1
+		//无预算数据量
+		if !isbudget {
+			info.budget_null += 1
+		}
+		//预算为0的数据量
+		if isbudget && budget == 0 {
+			info.budget_zero += 1
+		}
+		//预算金额合计
+		info.budget_sum += budget
+		//招标单位数量
+		if buyer != "" {
+			info.buyer_count += 1
+		}
+		//以下为结果类统计...
+		if toptype == "结果" {
+			//无中标金额数据量
+			if !isbidamount {
+				info.bidamount_null += 1
+				if buyer != "" { //无中标金额的招标单位数量
+					info.bidamount_null_buyer += 1
+				}
+				if s_winner != "" { //无中标金额的中标单位数量
+					info.bidamount_null_winner += len(s_win_arr)
+				}
+			}
+			//中标金额为0的数据量
+			if isbidamount && bidamount == 0 {
+				info.bidamount_zero += 1
+				if buyer != "" { //中标金额为0的招标单位数量
+					info.bidamount_zero_buyer += 1
+				}
+				if s_winner != "" { //中标金额为0的中标单位数量
+					info.bidamount_zero_winner += len(s_win_arr)
+				}
+			}
+			//中标金额合计
+			info.bidamount_sum += bidamount
+			//中标单位数量
+			if s_winner != "" {
+				info.winner_count += len(s_win_arr)
+			}
+
+			//所有企业累加
+			if info.all_winners == nil {
+				info.all_winners = map[string]int{}
+			}
+			for _, win := range s_win_arr {
+				num := qu.IntAll(info.all_winners[win])
+				info.all_winners[win] = num + 1
+			}
+		}
+	}
+}
+
+//func getWins(wins map[string]string) []string {
+//	arr := []string{}
+//	for _, v := range wins {
+//		arr = append(arr, v)
+//	}
+//	return arr
+//}
+
+func SaveEgeInfo(savename string) {
+	log.Debug("开始保存数据...")
+	SaveMgo.Save("zktest_zzzzzzkkk_", map[string]interface{}{
+		"TC_1": TC_1,
+		"TC_2": TC_2,
+		"TC_3": TC_3,
+	})
+	for k, v := range GlobalArrs {
+		if k%10000 == 0 {
+			log.Debug("is save ", k)
+		}
+		keyArr := strings.Split(v, "_")
+		if GlobalInfos[v].total > 0 { //只存有效数据
+			info := map[string]interface{}{}
+			ege := GlobalInfos[v]
+			area, city, district, year, topclass, toptype := keyArr[0], keyArr[1], keyArr[2], keyArr[3], keyArr[4], keyArr[5]
+			info["skey"] = v
+			info["area"] = area
+			info["city"] = city
+			info["district"] = district
+			info["year"] = year
+			info["topclass"] = topclass
+			info["toptype"] = toptype
+			info["total"] = ege.total
+			info["budget_null"] = ege.budget_null
+			info["budget_zero"] = ege.budget_zero
+			info["bidamount_null"] = ege.bidamount_null
+			info["bidamount_zero"] = ege.bidamount_zero
+			info["budget_sum"] = ege.budget_sum
+			info["bidamount_sum"] = ege.bidamount_sum
+			info["bidamount_null_buyer"] = ege.bidamount_null_buyer
+			info["bidamount_zero_buyer"] = ege.bidamount_zero_buyer
+			info["bidamount_null_winner"] = ege.bidamount_null_winner
+			info["bidamount_zero_winner"] = ege.bidamount_zero_winner
+			info["buyer_count"] = ege.buyer_count
+			info["winner_count"] = ege.winner_count
+			info["all_winners"] = ege.all_winners
+			SaveMgo.Save(savename, info)
+		}
+	}
+	log.Debug("保存数据结束...")
+}

+ 0 - 0
data_kvtext/remark → data_kvtext/src/remark


+ 3 - 0
data_quality/src/main.go

@@ -1,6 +1,7 @@
 package main
 package main
 
 
 import (
 import (
+	"qua_test"
 	u "ul"
 	u "ul"
 )
 )
 
 
@@ -19,6 +20,8 @@ func main() {
 	//figure.FigureUnLevelScreenNumber()
 	//figure.FigureUnLevelScreenNumber()
 	//figure.FigureGlobalScoreInfo()
 	//figure.FigureGlobalScoreInfo()
 
 
+	qua_test.RunDataQualityAnalyze()
+
 	//保持活性
 	//保持活性
 	lock := make(chan bool)
 	lock := make(chan bool)
 	<-lock
 	<-lock

+ 65 - 0
data_quality/src/qua_test/global_method.go

@@ -0,0 +1,65 @@
+package qua_test
+
+import (
+	"regexp"
+	"unicode"
+)
+
+// 编号
+var codeConReg *regexp.Regexp = regexp.MustCompile("(项目编号)")
+var codeUnConReg *regexp.Regexp = regexp.MustCompile("(null|勘察|测试|设计|设备|项目|标段|工程|监理|范围|分包|月|日|天)")
+var codeUnLenReg *regexp.Regexp = regexp.MustCompile("([\u4e00-\u9fa5]{9,})")
+var codeTimeReg *regexp.Regexp = regexp.MustCompile("^(\\d{8})$")
+
+// 是否含字母数字
+func isAlphanumeric(str string) bool {
+	var count int
+	for _, v := range str {
+		if unicode.IsNumber(v) || unicode.IsLetter(v) {
+			count++
+			break
+		}
+	}
+	return count > 0
+}
+
+// 日期格式
+func isRegTimeDateCode(str string) bool {
+	if codeTimeReg.MatchString(str) {
+		return true
+	}
+	return false
+}
+
+// 符号数量
+func isCharCount(str string) []int {
+	//中文,英文,数字,其他
+	c1, c2, c3, c4 := 0, 0, 0, 0
+	for _, v := range str {
+		if unicode.Is(unicode.Han, v) {
+			c1++
+		} else if unicode.IsLetter(v) {
+			c2++
+		} else if unicode.IsNumber(v) {
+			c3++
+		} else {
+			c4++
+		}
+	}
+	return []int{c1, c2, c3, c4}
+}
+
+/*
+****************开标时间相关方法
+****************开标时间相关方法
+****************开标时间相关方法
+ */
+var OpenDateReg *regexp.Regexp = regexp.MustCompile("(开标|截止)(时间|日期)")
+
+/*
+****************地域相关方法
+****************地域相关方法
+****************地域相关方法
+ */
+var SensitiveReg = regexp.MustCompile("(上一[条篇]|下一[条篇])[::].*")
+var CleanDetailReg1 = regexp.MustCompile("(北京时间)")

+ 186 - 0
data_quality/src/qua_test/init_region.go

@@ -0,0 +1,186 @@
+package qua_test
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	qu "qfw/util"
+	"sensitive"
+	u "ul"
+)
+
+// 定义字典树
+type Trie struct {
+	y bool
+	c map[rune]*Trie
+}
+type Province struct {
+	Name    string
+	Brief   string
+	Cap     string
+	Captial *City
+}
+type City struct {
+	Name  string
+	Brief string
+	P     *Province
+}
+
+// 区或县
+type District struct {
+	Name string
+	C    *City
+}
+
+var (
+	SensitiveFullCity     *sensitive.Filter
+	SensitiveFullDistrict *sensitive.Filter
+	SensitiveSimCity      *sensitive.Filter
+	SensitiveSimDistrict  *sensitive.Filter
+
+	CityBriefMap      map[string]*City              //市简称对应的市信息(key:杭州 val:&City{})
+	CityFullMap       map[string]*City              //市全称对应的市信息(key:杭州市 val:&City{})
+	DistrictCityMap   map[string][]*City            //区或县全称对应的city(全国有相同名称的区或县,这里对应的city用slice)
+	DistrictSimAndAll map[string][]map[string]*City //区或县简称对应的city(全国有相同名称的区或县,这里对应的city用slice)
+)
+
+func initRegionInfo() {
+	SensitiveFullCity = sensitive.New()
+	SensitiveFullDistrict = sensitive.New()
+	SensitiveSimCity = sensitive.New()
+	SensitiveSimDistrict = sensitive.New()
+
+	DistrictSimAndAll = make(map[string][]map[string]*City)
+	CityBriefMap = make(map[string]*City)
+	CityFullMap = make(map[string]*City)
+	DistrictCityMap = make(map[string][]*City)
+
+	initRegionData()
+	log.Debug("地域初始化完毕...")
+}
+
+func initRegionData() {
+	//初始化省信息
+	alldata := InitProvincesx()
+	log.Debug("is load regions ", len(alldata))
+	fnx := make([]map[string]interface{}, 0)
+	citys_maps := make(map[string][]map[string]interface{}, 0)
+	districts_maps := make(map[string]map[string][]map[string]interface{}, 0)
+	for _, v := range alldata {
+		codenum := len(v["code"].(string))
+		province := qu.ObjToString(v["province"])
+		city := qu.ObjToString(v["city"])
+		if codenum == 2 {
+			fnx = append(fnx, v)
+		} else if codenum == 4 {
+			citys_maps[province] = append(citys_maps[province], v)
+		} else if codenum == 6 {
+			if districts_maps[province] == nil {
+				districts_maps[province] = make(map[string][]map[string]interface{}, 0)
+			}
+			districts_maps[province][city] = append(districts_maps[province][city], v)
+		} else if codenum == 9 {
+
+		} else if codenum == 12 {
+
+		}
+	}
+
+	//初始化城市全称
+	for _, provinces := range fnx {
+		all_province := qu.ObjToString(provinces["all_province"]) //省全称
+		jc_province := qu.ObjToString(provinces["province"])      //省简称
+		//加载省信息
+		p := &Province{}
+		p.Name = all_province //省全称:浙江省
+		p.Brief = jc_province //省简称:浙江
+		//加载市信息
+		citys := citys_maps[jc_province]
+		isok := make(map[string]bool)
+		for _, vcity := range citys {
+			qc_city := qu.ObjToString(vcity["city"])
+			jc_city := qu.ObjToString(vcity["brief_city"])
+			SensitiveFullCity.AddWord(qc_city)
+			c := &City{}
+			c.Name = qc_city
+			CityFullMap[qc_city] = c
+			if jc_city != "" {
+				c.Brief = jc_city
+				SensitiveSimCity.AddWord(c.Brief)
+				CityBriefMap[c.Brief] = c
+			}
+			c.P = p
+			if city_alias, ok := vcity["city_alias"].([]interface{}); ok {
+				for _, vcity_alias := range city_alias {
+					strvcity_alias := qu.ObjToString(vcity_alias)
+					if isok[jc_province+"_"+strvcity_alias] {
+						continue
+					}
+					CityBriefMap[strvcity_alias] = c
+					initDistricts(jc_province, strvcity_alias, c, jc_city, districts_maps)
+					isok[jc_province+"_"+strvcity_alias] = true
+				}
+			}
+			if isok[jc_province+"_"+qc_city] {
+				continue
+			}
+			initDistricts(jc_province, qc_city, c, jc_city, districts_maps)
+		}
+	}
+}
+
+// 加载所有
+func InitProvincesx() []map[string]interface{} {
+	defer qu.Catch()
+	query := map[string]interface{}{
+		"Remarks": nil,
+		"town": map[string]interface{}{
+			"$exists": 0,
+		},
+	}
+	provinces, _ := u.Ext_Mgo.Find("address_new_2020", query, nil, nil)
+	return provinces
+}
+
+// 加载区县
+func initDistricts(jc_province string, qc_city string, c *City, jc_city string, districts_maps map[string]map[string][]map[string]interface{}) {
+	districts := districts_maps[jc_province][qc_city]
+	for _, vdistricts := range districts {
+		qc_district := qu.ObjToString(vdistricts["district"])
+		jc_district := qu.ObjToString(vdistricts["brief_district"])
+		d := &District{}
+		d.Name = qc_district
+		d.C = c
+		SensitiveFullDistrict.AddWord(qc_district)
+		if jc_district != "" {
+			SensitiveSimDistrict.AddWord(jc_district)
+			//初始化城市简称
+			c := CityBriefMap[jc_city]
+			dfullarr := DistrictSimAndAll[jc_district]
+			dfullcity := map[string]*City{qc_district: c}
+			if len(dfullarr) == 0 {
+				tmparr := []map[string]*City{dfullcity}
+				DistrictSimAndAll[jc_district] = tmparr
+			} else {
+				DistrictSimAndAll[jc_district] = append(DistrictSimAndAll[jc_district], dfullcity)
+			}
+		}
+		ctmp := DistrictCityMap[qc_district]
+		if len(ctmp) == 0 {
+			tmpcarr := []*City{c}
+			DistrictCityMap[qc_district] = tmpcarr
+		} else {
+			DistrictCityMap[qc_district] = append(DistrictCityMap[qc_district], c)
+		}
+		if district_alias, ok := vdistricts["district_alias"].([]interface{}); ok {
+			for _, vdistrict_alias := range district_alias {
+				strvdistrict_alias := qu.ObjToString(vdistrict_alias)
+				c_tmp := DistrictCityMap[strvdistrict_alias]
+				if len(c_tmp) == 0 {
+					tmpcarr := []*City{c}
+					DistrictCityMap[strvdistrict_alias] = tmpcarr
+				} else {
+					DistrictCityMap[strvdistrict_alias] = append(DistrictCityMap[strvdistrict_alias], c)
+				}
+			}
+		}
+	}
+}

+ 35 - 0
data_quality/src/qua_test/qua_analyze.go

@@ -0,0 +1,35 @@
+package qua_test
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	u "ul"
+)
+
+// 质量分析...
+func RunDataQualityAnalyze() {
+	initRegionInfo()
+	initSourceInfo()
+}
+func initSourceInfo() {
+	sess := u.Bid_Mgo.GetMgoConn()
+	defer u.Bid_Mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(u.Bid_Mgo.DbName).C("2023Zglt_qgyys222").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index : ", total, "~", isok)
+		}
+		update := map[string]interface{}{}
+		tmpid := u.BsonTOStringId(tmp["_id"])
+		QuaDetectionProjectCodeInfo(tmp, &update)
+		QuaDetectionBidOpenTimeInfo(tmp, &update)
+		QuaDetectionRegionInfo(tmp, &update)
+		u.Bid_Mgo.UpdateById("2023Zglt_qgyys222", tmpid, map[string]interface{}{
+			"$set": update,
+		})
+		isok++
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", total, "~", isok)
+}

+ 31 - 0
data_quality/src/qua_test/qua_bidopentime.go

@@ -0,0 +1,31 @@
+package qua_test
+
+import (
+	qu "qfw/util"
+)
+
+// 检测开标日期
+func QuaDetectionBidOpenTimeInfo(tmp map[string]interface{}, update *map[string]interface{}) {
+	quaArr := []string{}
+	toptype := qu.ObjToString(tmp["toptype"])
+	if toptype != "招标" {
+		(*update)["bidopentime_qa"] = quaArr
+		return
+	}
+	detail := qu.ObjToString(tmp["detail"])
+	bidopentime := qu.Int64All(tmp["bidopentime"])
+	publishtime := qu.Int64All(tmp["publishtime"])
+	BidOpenTimeFirstQua(bidopentime, detail, &quaArr)
+	BidOpenTimeSecondQua(bidopentime, publishtime, &quaArr)
+	(*update)["bidopentime_qa"] = quaArr
+}
+func BidOpenTimeFirstQua(bidopentime int64, detail string, quaArr *[]string) {
+	if bidopentime == 0 && OpenDateReg.MatchString(detail) {
+		*quaArr = append(*quaArr, "0101")
+	}
+}
+func BidOpenTimeSecondQua(bidopentime int64, publishtime int64, quaArr *[]string) {
+	if publishtime > bidopentime && bidopentime > 0 {
+		*quaArr = append(*quaArr, "0201")
+	}
+}

+ 51 - 0
data_quality/src/qua_test/qua_projectcode.go

@@ -0,0 +1,51 @@
+package qua_test
+
+import (
+	qu "qfw/util"
+	"unicode/utf8"
+)
+
+// 检测项目编号
+func QuaDetectionProjectCodeInfo(tmp map[string]interface{}, update *map[string]interface{}) {
+	projectcode := qu.ObjToString(tmp["projectcode"])
+	detail := qu.ObjToString(tmp["detail"])
+	quaArr := []string{}
+	ProjectCodeFirstQua(projectcode, detail, &quaArr)
+	if projectcode != "" {
+		ProjectCodeSecondQua(projectcode, &quaArr)
+		ProjectCodeThirdQua(projectcode, &quaArr)
+	}
+	(*update)["projectcode_qa"] = quaArr
+}
+
+func ProjectCodeFirstQua(projectcode string, detail string, quaArr *[]string) {
+	l := utf8.RuneCountInString(projectcode)
+	if l == 0 && codeConReg.MatchString(detail) {
+		*quaArr = append(*quaArr, "0101")
+	}
+	if l >= 1 && l <= 4 {
+		*quaArr = append(*quaArr, "0102")
+	}
+	if l >= 40 {
+		*quaArr = append(*quaArr, "0103")
+	}
+}
+func ProjectCodeSecondQua(projectcode string, quaArr *[]string) {
+	if isRegTimeDateCode(projectcode) {
+		*quaArr = append(*quaArr, "0201")
+	}
+	if codeUnConReg.MatchString(projectcode) {
+		*quaArr = append(*quaArr, "0202")
+	}
+	if !isAlphanumeric(projectcode) {
+		*quaArr = append(*quaArr, "0203")
+	}
+}
+func ProjectCodeThirdQua(projectcode string, quaArr *[]string) {
+	if countArr := isCharCount(projectcode); countArr[3] > 6 {
+		*quaArr = append(*quaArr, "0301")
+	}
+	if codeUnLenReg.MatchString(projectcode) {
+		*quaArr = append(*quaArr, "0302")
+	}
+}

+ 87 - 0
data_quality/src/qua_test/qua_region.go

@@ -0,0 +1,87 @@
+package qua_test
+
+import (
+	"github.com/PuerkitoBio/goquery"
+	qu "qfw/util"
+	"strings"
+)
+
+// 检测地域信息
+func QuaDetectionRegionInfo(tmp map[string]interface{}, update *map[string]interface{}) {
+	area := qu.ObjToString(tmp["area"])
+	city := qu.ObjToString(tmp["city"])
+	district := qu.ObjToString(tmp["district"])
+	detail := qu.ObjToString(tmp["detail"])
+	quaArr := []string{}
+	RegionTimeFirstQua(area, &quaArr)
+	if b := RegionTimeSecondQua(area, city, district, detail); b {
+		quaArr = append(quaArr, "0201")
+	}
+	(*update)["region_qa"] = quaArr
+}
+func RegionTimeFirstQua(area string, quaArr *[]string) {
+	if area == "全国" {
+		*quaArr = append(*quaArr, "0101")
+	}
+}
+func RegionTimeSecondQua(area string, city string, district string, detail string) bool {
+	if area == "全国" || district != "" {
+		return false
+	}
+	detail = SensitiveReg.ReplaceAllString(detail, "")
+	detail = TextAfterRemoveTable(detail)
+	detail = CleanDetailReg1.ReplaceAllString(detail, "")
+	if city == "" {
+		fullCityArr := SensitiveFullCity.FindAll(detail)
+		for _, v := range fullCityArr {
+			if cityMap := CityFullMap[v]; cityMap != nil {
+				if cityMap.P.Brief == area {
+					return true
+				}
+			}
+		}
+		simCityArr := SensitiveSimCity.FindAll(detail)
+		for _, v := range simCityArr {
+			if cityMap := CityBriefMap[v]; cityMap != nil {
+				if cityMap.P.Brief == area && !strings.Contains(area, v) {
+					return true
+				}
+			}
+		}
+	}
+
+	if city != "" && district == "" {
+		fullDistrictArr := SensitiveFullDistrict.FindAll(detail)
+		for _, v := range fullDistrictArr {
+			citys := DistrictCityMap[v]
+			for _, v1 := range citys {
+				if v1.P.Brief == area && v1.Name == city && v != city && v != area {
+					return true
+				}
+			}
+		}
+	}
+	//简称区县
+	//simDistrictArr := SensitiveSimDistrict.FindAll(detail)
+	//for _, v := range simDistrictArr {
+	//	citysArr := DistrictSimAndAll[v]
+	//	for _, f_citys := range citysArr {
+	//		for d, c := range f_citys {
+	//			if c == nil || c.P == nil || c.Name == "" {
+	//				continue
+	//			}
+	//			if c.P.Brief == area && c.Name != city && d != "" {
+	//				return true
+	//			}
+	//		}
+	//	}
+	//}
+	return false
+}
+
+// 取出排除表格之外的文本
+func TextAfterRemoveTable(con string) string {
+	doc2, _ := goquery.NewDocumentFromReader(strings.NewReader(con))
+	doc2.Find("table").Remove()
+	return doc2.Text()
+}

+ 22 - 4
data_quality/src/ul/initcfg.go

@@ -7,7 +7,7 @@ import (
 )
 )
 
 
 var (
 var (
-	Ext_Mgo, Qyxy_Mgo                    *MongodbSim
+	Bid_Mgo, Ext_Mgo, Qyxy_Mgo           *MongodbSim
 	IsLocal                              bool
 	IsLocal                              bool
 	Quaconfig                            map[string]interface{} //质量配置文件
 	Quaconfig                            map[string]interface{} //质量配置文件
 	QyLock                               sync.Mutex             //锁-多线程备用
 	QyLock                               sync.Mutex             //锁-多线程备用
@@ -26,7 +26,7 @@ func InitClass() {
 	log.Debug("初始化完毕...")
 	log.Debug("初始化完毕...")
 }
 }
 
 
-//质量相关初始化配置
+// 质量相关初始化配置
 func initQuaCfg() {
 func initQuaCfg() {
 	qu.ReadConfig(&Quaconfig)
 	qu.ReadConfig(&Quaconfig)
 	Ext_Type = Quaconfig["ext_type"].(map[string]interface{})
 	Ext_Type = Quaconfig["ext_type"].(map[string]interface{})
@@ -42,12 +42,21 @@ func initQuaCfg() {
 	Projectcode_Score = Quaconfig["projectcode_score"].(map[string]interface{})
 	Projectcode_Score = Quaconfig["projectcode_score"].(map[string]interface{})
 }
 }
 
 
-//初始化mgo
+// 初始化mgo
 func initMgoInfo() {
 func initMgoInfo() {
 	if IsLocal {
 	if IsLocal {
+		Bid_Mgo = &MongodbSim{
+			MongodbAddr: "192.168.3.166:27082",
+			DbName:      "yantianlei",
+			Size:        10,
+			UserName:    "",
+			Password:    "",
+		}
+		Bid_Mgo.InitPool()
+
 		Ext_Mgo = &MongodbSim{
 		Ext_Mgo = &MongodbSim{
 			MongodbAddr: "127.0.0.1:27017",
 			MongodbAddr: "127.0.0.1:27017",
-			DbName:      "qfw",
+			DbName:      "extract_service",
 			Size:        10,
 			Size:        10,
 			UserName:    "",
 			UserName:    "",
 			Password:    "",
 			Password:    "",
@@ -63,6 +72,15 @@ func initMgoInfo() {
 		}
 		}
 		Qyxy_Mgo.InitPool()
 		Qyxy_Mgo.InitPool()
 	} else {
 	} else {
+		Bid_Mgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		Bid_Mgo.InitPool()
+
 		Ext_Mgo = &MongodbSim{
 		Ext_Mgo = &MongodbSim{
 			MongodbAddr: "172.17.4.85:27080",
 			MongodbAddr: "172.17.4.85:27080",
 			DbName:      "qfw",
 			DbName:      "qfw",

+ 23 - 0
data_tool/src/config.json

@@ -0,0 +1,23 @@
+{
+  "tool_1":{
+    "open": true,
+    "mark": "使用说明:导出标的物相关品牌信息,首行某一列<唯一标识>",
+    "s_xlsx": "源表.xlsx",
+    "o_xlsx_1": "品牌.xlsx",
+    "words": ["班班通","智慧黑板","电子白板","触控一体机","教学一体机","电子黑板","交互一体机","大屏","学生机","教师机"]
+  },
+  "tool_2": {
+    "open": false,
+    "mark": "使用说明:设置关键词···导出项目数据,拟在建标讯数据,时间范围:大于等于,小于,数量:不建议大于10w",
+    "words": ["金属性质","黑板"],
+    "ptime":["1661961600","1696953600"],
+    "max_nj" : 10,
+    "max_pr" : 10,
+    "o_xlsx_2": "信息.xlsx"
+  },
+  "global_es": {
+    "addr": "http://127.0.0.1:13003",
+    "username": "es_all",
+    "password": "TopJkO2E_d1x"
+  }
+}

+ 11 - 0
data_tool/src/global.go

@@ -0,0 +1,11 @@
+package main
+
+import (
+	qu "qfw/util"
+	es7 "qfw/util/elastic_v7"
+)
+
+func initGlobalEs() {
+	escfg := *qu.ObjToMap(SysConfig["global_es"])
+	es7.InitElasticSize(qu.ObjToString(escfg["addr"]), 10, qu.ObjToString(escfg["username"]), qu.ObjToString(escfg["password"]))
+}

+ 23 - 0
data_tool/src/main.go

@@ -0,0 +1,23 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	qu "qfw/util"
+)
+
+var (
+	SysConfig  map[string]interface{} //配置文件
+	timeLayout = "2006-01-02 15:04:05"
+)
+
+func init() {
+	qu.ReadConfig(&SysConfig) //加载配置文件
+	log.Debug("加载配置文件...", SysConfig)
+	initGlobalEs()
+}
+func main() {
+	RunExportInfo1()
+	RunExportInfo2()
+	//lock := make(chan bool)
+	//<-lock
+}

+ 51 - 0
data_tool/src/method.go

@@ -0,0 +1,51 @@
+package main
+
+import (
+	new_xlsx "github.com/xlsx-master"
+	"go.mongodb.org/mongo-driver/bson/primitive"
+	qu "qfw/util"
+)
+
+func IsMarkInterfaceArr(t interface{}) []string {
+	sub_list := []string{}
+	if list_3, ok_3 := t.([]string); ok_3 {
+		sub_list = list_3
+		return sub_list
+	}
+	if list_1, ok_1 := t.(primitive.A); ok_1 {
+		sub_list = qu.ObjArrToStringArr(list_1)
+	} else {
+		if list_2, ok_2 := t.([]interface{}); ok_2 {
+			sub_list = qu.ObjArrToStringArr(list_2)
+		}
+	}
+	return sub_list
+}
+
+func IsMarkInterfaceMap(t interface{}) []map[string]interface{} {
+	p_list := []map[string]interface{}{}
+	if list_3, ok_3 := t.([]map[string]interface{}); ok_3 {
+		p_list = list_3
+		return p_list
+	}
+	if yl_list_1, ok_1 := t.(primitive.A); ok_1 {
+		p_list = qu.ObjArrToMapArr(yl_list_1)
+	} else {
+		if yl_list_2, ok_2 := t.([]interface{}); ok_2 {
+			p_list = qu.ObjArrToMapArr(yl_list_2)
+		}
+	}
+	return p_list
+}
+
+func decodeSEUrl(str string) string {
+	//var SE = qu.SimpleEncrypt{Key: "entservice"}
+	var SE = qu.SimpleEncrypt{Key: "topJYBX2019"}
+	return SE.DecodeString(str)
+}
+
+func writeRow(row *new_xlsx.Row, arr []string) {
+	for _, v := range arr {
+		row.AddCell().Value = v
+	}
+}

BIN
data_tool/src/res/源表.xlsx


+ 144 - 0
data_tool/src/tool_1.go

@@ -0,0 +1,144 @@
+package main
+
+import (
+	"fmt"
+	log "github.com/donnie4w/go-logger/logger"
+	"github.com/tealeg/xlsx"
+	new_xlsx "github.com/xlsx-master"
+	"os"
+	qu "qfw/util"
+	es7 "qfw/util/elastic_v7"
+	"strings"
+)
+
+var (
+	tcfg1            map[string]interface{}
+	s_xlsx, o_xlsx_1 string
+	keywords1        map[string]string
+)
+
+func initVarInfo1() {
+	tcfg1 = *qu.ObjToMap(SysConfig["tool_1"])
+	s_xlsx = qu.ObjToString(tcfg1["s_xlsx"])
+	o_xlsx_1 = qu.ObjToString(tcfg1["o_xlsx_1"])
+	keywords1 = map[string]string{}
+	words := qu.ObjArrToStringArr(tcfg1["words"].([]interface{}))
+	for _, v := range words {
+		keywords1[v] = v
+	}
+}
+
+func RunExportInfo1() {
+	initVarInfo1()
+	if !tcfg1["open"].(bool) {
+		fmt.Println("工具一...未开启...")
+		return
+	}
+	s_xlsx = "源表.xlsx"
+	idx, infoArr := ReadSourceXlsxInfo()
+	//初始化表格与写数据
+	writeTableInfo(idx, infoArr)
+	log.Debug("导出完毕...")
+}
+
+// 写表格数据
+func writeTableInfo(idx int, infoArr [][]string) {
+	log.Debug("xlsx开始写数据...")
+	os.Remove(o_xlsx_1)
+	f := new_xlsx.NewFile()
+	sheet, _ := f.AddSheet("数据")
+	row := sheet.AddRow()
+	row.AddCell().Value = "产品名称"
+	row.AddCell().Value = "品牌"
+	row.AddCell().Value = "型号"
+	row.AddCell().Value = "单价"
+	row.AddCell().Value = "数量"
+	row.AddCell().Value = "总价"
+	for k, v := range infoArr {
+		if k == 0 { //写第一行数据
+			writeRow(row, v)
+		} else {
+			row = sheet.AddRow()
+			tmpid := decodeSEUrl(v[idx])
+			arr := getEsBiddingInfo(tmpid)
+			nv := append(arr, v...)
+			writeRow(row, nv)
+		}
+	}
+	if err := f.Save(o_xlsx_1); err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+}
+
+func getEsBiddingInfo(tmpid string) []string {
+	if tmpid != "" && len(tmpid) == 24 {
+		if data := es7.GetById("bidding", tmpid); data != nil {
+			if len(*data) > 0 {
+				purchasinglist := IsMarkInterfaceMap((*data)[0]["purchasinglist"])
+				items := []string{}
+				brandnames, models, unitprices, numbers, totalprices := []string{}, []string{}, []string{}, []string{}, []string{}
+				for _, v := range purchasinglist {
+					//大屏 品牌	型号	单价	数量	总价
+					if itemname := qu.ObjToString(v["itemname"]); itemname != "" && keywords1[itemname] != "" {
+						items = append(items, defValues(itemname, "s"))
+						brandnames = append(brandnames, defValues(v["brandname"], "s"))
+						models = append(models, defValues(v["model"], "s"))
+						unitprices = append(unitprices, defValues(v["unitprice"], "f"))
+						numbers = append(numbers, defValues(v["number"], "f"))
+						totalprices = append(totalprices, defValues(v["totalprice"], "f"))
+					}
+				}
+				s0, s1, s2, s3, s4, s5 := strings.Join(items, "/"), strings.Join(brandnames, "/"), strings.Join(models, "/"), strings.Join(unitprices, "/"), strings.Join(numbers, "/"), strings.Join(totalprices, "/")
+				return []string{s0, s1, s2, s3, s4, s5}
+			}
+		}
+	}
+	return []string{"", "", "", "", "", ""}
+}
+
+func defValues(v interface{}, s_type string) string {
+	def := "_"
+	if s_type == "s" {
+		nv := qu.ObjToString(v)
+		if nv == "" {
+			return def
+		}
+		return nv
+	} else if s_type == "f" {
+		nv := qu.Float64All(v)
+		if nv == float64(0) {
+			return def
+		}
+		return fmt.Sprintf("%f", nv)
+	} else {
+
+	}
+	return qu.ObjToString(v)
+}
+
+// 读xlsx
+func ReadSourceXlsxInfo() (int, [][]string) {
+	ff, _ := xlsx.OpenFile("res/" + s_xlsx)
+	idx, infoArr := 0, [][]string{}
+	for _, sheet := range ff.Sheets {
+		for k, row := range sheet.Rows {
+			var arr []string
+			for _, cell := range row.Cells {
+				arr = append(arr, cell.String())
+			}
+			if k == 0 {
+				for k1, v1 := range arr {
+					if v1 == "唯一标识" {
+						idx = k1
+					}
+				}
+			}
+			infoArr = append(infoArr, arr)
+		}
+		break
+	}
+	log.Debug("xlsx读取完毕...")
+	return idx, infoArr
+}

+ 231 - 0
data_tool/src/tool_2.go

@@ -0,0 +1,231 @@
+package main
+
+import (
+	"context"
+	"encoding/json"
+	"fmt"
+	log "github.com/donnie4w/go-logger/logger"
+	new_xlsx "github.com/xlsx-master"
+	esQ "gopkg.in/olivere/elastic.v7"
+	"os"
+	qu "qfw/util"
+	es7 "qfw/util/elastic_v7"
+	"strings"
+	"time"
+)
+
+var (
+	tcfg2          map[string]interface{}
+	keywords2      = []string{}
+	p_gte, p_lt    = int64(0), int64(0)
+	max_nj, max_pr = 0, 0
+	o_xlsx_2       string
+	keys           = []string{"title", "area", "city", "district", "projectname", "publishtime", "projectcode", "budget", "bidamount", "buyer", "buyerperson", "buyertel", "agency", "agencyperson", "agencytel", "s_winner", "winnerperson", "winnertel", "bidopentime", "bidendtime", "docendtime", "signendtime"}
+	Url            = "https://www.jianyu360.cn/article/content/%s.html"
+)
+
+func initVarInfo2() {
+	tcfg2 = *qu.ObjToMap(SysConfig["tool_2"])
+	keywords2 = qu.ObjArrToStringArr(tcfg2["words"].([]interface{}))
+	ptime := qu.ObjArrToStringArr(tcfg2["ptime"].([]interface{}))
+	o_xlsx_2 = qu.ObjToString(tcfg2["o_xlsx_2"])
+	p_gte, p_lt = qu.Int64All(ptime[0]), qu.Int64All(ptime[1])
+	max_nj, max_pr = qu.IntAll(tcfg2["max_nj"]), qu.IntAll(tcfg2["max_pr"])
+	if max_nj == -1 {
+		max_nj = 100000
+	}
+	if max_pr == -1 {
+		max_pr = 100000
+	}
+}
+
+func RunExportInfo2() {
+	initVarInfo2()
+	if !tcfg2["open"].(bool) {
+		fmt.Println("工具二...未开启...")
+		return
+	}
+	log.Debug("开始导出数据...")
+	NjFirstArr := []string{"关键词", "公告标题", "省", "市", "县", "项目名称", "发布时间", "项目编号", "招标预算", "中标金额", "招标单位", "招标单位联系人", "招标单位联系方式", "招标代理机构", "招标代理机构联系人", "招标代理机构联系方式", "中标单位", "中标单位联系人", "中标单位联系方式", "开标时间", "投标截止时间", "标书获取截止时间", "报名截止时间", "原文链接", "剑鱼链接"}
+	PrFirstArr := []string{"项目标识", "关键词", "公告标题", "省", "市", "县", "项目名称", "发布时间", "项目编号", "招标预算", "中标金额", "招标单位", "招标单位联系人", "招标单位联系方式", "招标代理机构", "招标代理机构联系人", "招标代理机构联系方式", "中标单位", "中标单位联系人", "中标单位联系方式", "开标时间", "投标截止时间", "标书获取截止时间", "报名截止时间", "原文链接", "剑鱼链接"}
+	os.Remove(o_xlsx_1)
+	f := new_xlsx.NewFile()
+	sheet1, _ := f.AddSheet("拟建数据")
+	sheet2, _ := f.AddSheet("项目数据")
+	row1 := sheet1.AddRow()
+	row2 := sheet2.AddRow()
+	writeRow(row1, NjFirstArr)
+	writeRow(row2, PrFirstArr)
+
+	//查询语句...
+	njArr := FindNiJianInfo()
+	for _, v := range njArr {
+		row1 = sheet1.AddRow()
+		writeRow(row1, getStructInfo(v, "title", false, ""))
+	}
+	prArr := FindProjectInfo()
+	for _, v := range prArr {
+		row2 = sheet2.AddRow()
+		writeRow(row2, getStructInfo(v, "projectname", true, ""))
+		ids := IsMarkInterfaceArr(v["ids"])
+		prid := qu.ObjToString(v["id"])
+		for _, v1 := range ids {
+			dataArr := es7.GetById("bidding", v1)
+			if dataArr != nil {
+				if len(*dataArr) > 0 {
+					data := (*dataArr)[0]
+					row2 = sheet2.AddRow()
+					writeRow(row2, getStructInfo(data, "projectname", true, prid))
+				}
+			}
+		}
+	}
+	if err := f.Save(o_xlsx_2); err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+	log.Debug("导出完毕...")
+}
+
+func FindNiJianInfo() []map[string]interface{} {
+	esclient := es7.GetEsConn()
+	defer es7.DestoryEsConn(esclient)
+	query := esQ.NewBoolQuery().
+		Must(esQ.NewRangeQuery("publishtime").Gte(p_gte).Lt(p_lt)).
+		Must(esQ.NewTermsQuery("toptype", "拟建"))
+	s_q := esQ.NewBoolQuery()
+	for _, v := range keywords2 {
+		s_q = s_q.Should(esQ.NewMultiMatchQuery(v, "title").Type("phrase"))
+	}
+	query.Must(s_q)
+	log.Debug("拟建数据查询数量...", es7.Count("bidding", query))
+	countDocs, infos := 0, []map[string]interface{}{}
+	res, err := esclient.Scroll().Index("bidding").Query(query).Scroll("1m").Size(500).Do(context.Background()) //查询一条获取游标
+	if err == nil {                                                                                             //处理第一批数据
+		infos = ParsingEsInfo(res, &countDocs)
+		scrollId := res.ScrollId
+		for {
+			if countDocs%1000 == 0 {
+				log.Debug("cur index ", countDocs)
+			}
+			if countDocs >= max_nj {
+				break
+			}
+			searchResult, err := esclient.Scroll("1m").Index("bidding").ScrollId(scrollId).Size(500).Do(context.TODO()) //查询
+			if err != nil {
+				//log.Debug("Es Search Data Error:", err.Error())
+				break
+			}
+			infos = append(infos, ParsingEsInfo(searchResult, &countDocs)...)
+			scrollId = searchResult.ScrollId
+		}
+		_, _ = esclient.ClearScroll().ScrollId(scrollId).Do(context.Background()) //清理游标
+	} else {
+		fmt.Println(err)
+	}
+	if len(infos) > max_nj {
+		infos = infos[:max_nj]
+	}
+	log.Debug("拟建信息导出数量... ", len(infos))
+	return infos
+}
+func FindProjectInfo() []map[string]interface{} {
+	esclient := es7.GetEsConn()
+	defer es7.DestoryEsConn(esclient)
+	query := esQ.NewBoolQuery().
+		Must(esQ.NewRangeQuery("lasttime").Gte(p_gte).Lt(p_lt))
+	s_q := esQ.NewBoolQuery()
+	for _, v := range keywords2 {
+		s_q = s_q.Should(esQ.NewMultiMatchQuery(v, "projectname.pname").Type("phrase"))
+	}
+	query.Must(s_q)
+	log.Debug("项目信息查询数量...", es7.Count("projectset", query))
+	countDocs, infos := 0, []map[string]interface{}{}
+	res, err := esclient.Scroll().Index("projectset").Query(query).Scroll("1m").Size(500).Do(context.Background()) //查询一条获取游标
+	if err == nil {                                                                                                //处理第一批数据
+		infos = ParsingEsInfo(res, &countDocs)
+		scrollId := res.ScrollId
+		for {
+			if countDocs%1000 == 0 {
+				log.Debug("cur index ", countDocs)
+			}
+			if countDocs >= max_pr {
+				break
+			}
+			searchResult, err := esclient.Scroll("1m").Index("bidding").ScrollId(scrollId).Size(500).Do(context.TODO()) //查询
+			if err != nil {
+				//log.Debug("Es Search Data Error:", err.Error())
+				break
+			}
+			infos = append(infos, ParsingEsInfo(searchResult, &countDocs)...)
+			scrollId = searchResult.ScrollId
+		}
+		_, _ = esclient.ClearScroll().ScrollId(scrollId).Do(context.Background()) //清理游标
+	} else {
+		fmt.Println(err)
+	}
+	if len(infos) > max_pr && max_pr > -1 {
+		infos = infos[:max_pr]
+	}
+	log.Debug("项目信息导出数量... ", len(infos))
+	return infos
+}
+func ParsingEsInfo(res *esQ.SearchResult, countDocs *int) []map[string]interface{} {
+	infos := []map[string]interface{}{}
+	for _, hit := range res.Hits.Hits {
+		tmp := make(map[string]interface{})
+		err := json.Unmarshal(hit.Source, &tmp)
+		if err != nil {
+			log.Debug("json Unmarshal error")
+			continue
+		}
+		*countDocs++
+		delete(tmp, "detail")
+		delete(tmp, "filetext")
+		infos = append(infos, tmp)
+	}
+	return infos
+}
+
+// 构建标准化信息
+func getStructInfo(tmp map[string]interface{}, key string, isPr bool, prid string) []string {
+	infos := []string{}
+	if isPr {
+		if prid == "" {
+			infos = append(infos, qu.ObjToString(tmp["id"]))
+		} else {
+			infos = append(infos, prid)
+		}
+	}
+	text := qu.ObjToString(tmp[key])
+	specArr := []string{}
+	for _, v := range keywords2 {
+		if strings.Contains(text, v) {
+			specArr = append(specArr, v)
+		}
+	}
+	infos = append(infos, strings.Join(specArr, ","))
+	for _, v := range keys {
+		nv := ""
+		if v == "publishtime" || v == "bidopentime" || v == "bidendtime" || v == "docendtime" || v == "signendtime" {
+			if t := qu.Int64All(tmp[v]); t > 0 {
+				nv = time.Unix(t, 0).Format(timeLayout)
+			}
+		} else if v == "budget" || v == "bidamount" {
+			if r := qu.Float64All(tmp[v]); r > 0 {
+				nv = fmt.Sprintf("%f", r)
+			}
+		} else {
+			nv = qu.ObjToString(tmp[v])
+		}
+		infos = append(infos, nv)
+	}
+	infos = append(infos, qu.ObjToString(tmp["href"]))
+	jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", qu.ObjToString(tmp["id"])))
+	if prid == "" && isPr {
+		jyhref = ""
+	}
+	infos = append(infos, jyhref)
+	return infos
+}

+ 84 - 0
data_tower/src/main.go

@@ -0,0 +1,84 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	"go.mongodb.org/mongo-driver/bson"
+	qu "qfw/util"
+	u "ul"
+)
+
+func init() {
+	//u.IsLocal = true
+	//u.IsDev = true
+	u.InitVar()
+}
+
+func main() {
+	readTowerBxInfo()
+	writeTowerBxInfo()
+
+	//readTowerNhInfo()
+	writeTowerNhInfo()
+
+	return
+	lock := make(chan bool)
+	<-lock
+}
+
+func test1() {
+	dataArr := u.MysqlBiTool.Find("customer_data_ttzl_project", map[string]interface{}{}, "area,msg_id", "msg_id", -1, -1)
+	log.Debug(len(*dataArr))
+	for k, v := range *dataArr {
+		if k%1000 == 0 {
+			log.Debug("cur index ", k)
+		}
+		msg_id := qu.IntAll(v["msg_id"])
+		area := qu.ObjToString(v["area"])
+		new_area := ""
+		if area == "" {
+			new_area = "全国"
+		} else {
+			if u.Regions[area] != "" {
+				new_area = u.Regions[area]
+			}
+		}
+		u.MysqlBiTool.Update("customer_data_ttzl_project", bson.M{"msg_id": msg_id}, bson.M{"area": new_area})
+	}
+	log.Debug("is over ...")
+}
+
+func test() {
+	dataArr := u.MysqlBiTool.Find("customer_data_ttzl_project", map[string]interface{}{}, "zb_infoid,infoid,msg_id", "msg_id", -1, -1)
+	log.Debug(len(*dataArr))
+	for k, v := range *dataArr {
+		if k%1000 == 0 {
+			log.Debug("cur index ", k)
+		}
+		msg_id := qu.IntAll(v["msg_id"])
+		update := map[string]interface{}{}
+		if zb_infoid := qu.ObjToString(v["zb_infoid"]); zb_infoid != "" {
+			zb_jybxhref := "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + zb_infoid
+			update["zb_jybxhref"] = zb_jybxhref
+		}
+		if infoid := qu.ObjToString(v["infoid"]); infoid != "" {
+			jybxhref := "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + infoid
+			update["jybxhref"] = jybxhref
+		}
+		if len(update) > 0 && msg_id > 0 {
+			u.MysqlBiTool.Update("customer_data_ttzl_project", bson.M{"msg_id": msg_id}, update)
+		}
+	}
+	log.Debug("is over ...")
+
+	//dataArr := u.MysqlBiTool.Find("customer_data_ttzl", map[string]interface{}{}, "id,msg_id", "msg_id", -1, -1)
+	//log.Debug(len(*dataArr))
+	//for k, v := range *dataArr {
+	//	if k%1000 == 0 {
+	//		log.Debug("cur index ", k)
+	//	}
+	//	msg_id := qu.IntAll(v["msg_id"])
+	//	jybxhref := "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + qu.ObjToString(v["id"])
+	//	u.MysqlBiTool.Update("customer_data_ttzl", bson.M{"msg_id": msg_id}, bson.M{"jybxhref": jybxhref})
+	//}
+	//log.Debug("is over ...")
+}

+ 107 - 0
data_tower/src/read.go

@@ -0,0 +1,107 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	"github.com/tealeg/xlsx"
+	"strings"
+	u "ul"
+)
+
+var keyBxArr = []string{"infoid", "rulename", "projectId", "sourceinfoid", "isOptimization", "matchkey", "tagname", "bidtype", "bidway", "toptype", "subtype", "title", "area", "city", "district", "publishtime", "projectcode", "projectname", "buyer", "buyerclass", "tagname2", "budget", "buyerperson", "buyertel", "s_winner", "tagname3", "bidamount", "winnerperson", "winnertel", "agency", "agencyperson", "agencytel", "href", "jybxhref", "docstarttime", "docendtime", "bidstarttime", "bidendtime", "bidopentime", "isCompetitors"}
+var indexBxArr = []int{0, -1, 1, 2, 4, -1, 3, -1, -1, 6, 7, 5, 13, 14, 15, 16, 17, -1, 8, 9, 10, 18, 20, 21, 11, 12, 19, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1}
+var keyNhArr = []string{"projectId", "sourceinfoid", "tagname", "projectname", "buyer", "s_winner", "area", "city", "district", "projectcode", "zb_infoid", "tagname2", "buyerclass", "buyerperson", "buyertel", "zb_updatetime", "zb_type", "budget", "agency", "agencyperson", "agencytel", "zb_href", "infoid", "tagname3", "winnerperson", "winnertel", "updatetime", "jg_type", "bidamount", "href"}
+var indexNhArr = []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29}
+
+// 获取铁塔标讯数据
+func readTowerBxInfo() {
+	log.Debug(len(keyBxArr), "~", len(indexBxArr))
+	ff, _ := xlsx.OpenFile("res/qlm.xlsx")
+	total := 0
+	for _, sheet := range ff.Sheets {
+		for k, row := range sheet.Rows {
+			if k == 0 {
+				log.Debug("长度~", len(row.Cells))
+				continue
+			}
+			if total%10000 == 0 {
+				log.Debug("cur index ", total)
+			}
+			var arr []string
+			for _, cell := range row.Cells {
+				arr = append(arr, cell.String())
+			}
+			splitBxData(arr)
+			total++
+		}
+		log.Debug("is over ...", total)
+	}
+}
+
+func splitBxData(arr []string) {
+	if arr[0] == "" {
+		return
+	}
+	info := map[string]interface{}{}
+	for k, v := range indexBxArr {
+		if v <= -1 {
+			continue
+		}
+		if arr[v] != "" {
+			key := keyBxArr[k]
+			if key == "publishtime" {
+				nv := strings.ReplaceAll(arr[v], ";@", "")
+				nv = strings.ReplaceAll(nv, "/", "-")
+				info[key] = nv
+			} else {
+				info[key] = arr[v]
+			}
+		}
+	}
+
+	u.SaveMgo.Save("zktest_tower_info", info)
+}
+
+// 获取铁塔捏合数据
+func readTowerNhInfo() {
+	log.Debug(len(keyNhArr), "~", len(indexNhArr))
+	ff, _ := xlsx.OpenFile("res/qlm_nh.xlsx")
+	total := 0
+	for _, sheet := range ff.Sheets {
+		for k, row := range sheet.Rows {
+			total++
+			if k == 0 {
+				log.Debug("长度~", len(row.Cells))
+				continue
+			}
+			if total%10000 == 0 {
+				log.Debug("cur index ", total)
+			}
+			var arr []string
+			for _, cell := range row.Cells {
+				arr = append(arr, cell.String())
+			}
+			splitNhData(arr)
+		}
+		log.Debug("is over ...", total)
+	}
+}
+
+func splitNhData(arr []string) {
+	info := map[string]interface{}{}
+	for k, v := range indexNhArr {
+		if v <= -1 {
+			continue
+		}
+		if arr[v] != "" {
+			key := keyNhArr[k]
+			if key == "zb_updatetime" || key == "jg_updatetime" {
+				nv := strings.ReplaceAll(arr[v], ";@", "")
+				nv = strings.ReplaceAll(nv, "/", "-")
+				info[key] = nv
+			} else {
+				info[key] = arr[v]
+			}
+		}
+	}
+	u.SaveMgo.Save("zktest_tower_nh_info", info)
+}

BIN
data_tower/src/res/qlm.xlsx


BIN
data_tower/src/res/qlm_nh.xlsx


+ 126 - 0
data_tower/src/ul/initVar.go

@@ -0,0 +1,126 @@
+package ul
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	"sync"
+)
+
+var (
+	SaveMgo, PyMgo *MongodbSim
+	IsLocal, IsDev bool
+	MysqlBiTool    *Mysql
+	TimeLayout     = "2006-01-02 15:04:05"
+)
+var PoolMgo = make(chan bool, 10)
+var WgMgo = &sync.WaitGroup{}
+
+var Regions = map[string]string{
+	"山东省":      "山东",
+	"浙江省":      "浙江",
+	"海南省":      "海南",
+	"江苏省":      "江苏",
+	"辽宁省":      "辽宁",
+	"黑龙江省":     "黑龙江",
+	"上海市":      "上海",
+	"吉林省":      "吉林",
+	"西藏自治区":    "西藏",
+	"北京市":      "北京",
+	"福建省":      "福建",
+	"河北省":      "河北",
+	"山西省":      "山西",
+	"天津市":      "天津",
+	"四川省":      "四川",
+	"广东省":      "广东",
+	"甘肃省":      "甘肃",
+	"安徽省":      "安徽",
+	"湖北省":      "湖北",
+	"贵州省":      "贵州",
+	"江西省":      "江西",
+	"宁夏回族自治区":  "宁夏",
+	"新疆维吾尔自治区": "新疆",
+	"重庆市":      "重庆",
+	"青海省":      "青海",
+	"云南省":      "云南",
+	"陕西省":      "陕西",
+	"湖南省":      "湖南",
+	"内蒙古自治区":   "内蒙古",
+	"河南省":      "河南",
+	"广西壮族自治区":  "广西",
+	"香港特别行政区":  "香港",
+	"澳门特别行政区":  "澳门",
+	"台湾省":      "台湾",
+}
+
+func InitVar() {
+	initMgoInfo()
+	initMysqlInfo()
+	log.Debug("初始化完毕···")
+}
+
+// 初始化mgo
+func initMgoInfo() {
+	if IsLocal {
+		SaveMgo = &MongodbSim{
+			MongodbAddr: "127.0.0.1:27017",
+			DbName:      "zhengkun",
+			Size:        10,
+			UserName:    "",
+			Password:    "",
+		}
+		SaveMgo.InitPool()
+
+		PyMgo = &MongodbSim{
+			MongodbAddr: "127.0.0.1:12003",
+			DbName:      "py_spider",
+			Size:        10,
+			UserName:    "",
+			Password:    "",
+		}
+		PyMgo.InitPoolDirect()
+	} else {
+		SaveMgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		SaveMgo.InitPool()
+
+		PyMgo = &MongodbSim{
+			MongodbAddr: "172.17.4.87:27080",
+			DbName:      "py_spider",
+			Size:        10,
+			UserName:    "",
+			Password:    "",
+		}
+		PyMgo.InitPool()
+	}
+}
+func initMysqlInfo() {
+	username, password := "zhengkun", "Zk#20220824"
+	address := "127.0.0.1:15001"
+	if !IsLocal {
+		address = "172.17.4.242:4000"
+	}
+	if IsDev {
+		username, password = "root", "=PDT49#80Z!RVv52_z"
+		address = "192.168.3.217:4000"
+	}
+	MysqlBiTool = &Mysql{
+		Address:  address,
+		UserName: username,
+		PassWord: password,
+		DBName:   "bi_service",
+	}
+	MysqlBiTool.Init()
+}
+
+// 插入数据
+func InsertMysqlBiData(name string, data map[string]interface{}, mark string) int64 {
+	inb := MysqlBiTool.Insert(name, data)
+	if inb == -1 {
+		log.Debug("插入数据异常...", name, "~", mark)
+	}
+	return inb
+}

+ 414 - 0
data_tower/src/ul/mgo.go

@@ -0,0 +1,414 @@
+package ul
+
+import (
+	"context"
+	"log"
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson"
+	"go.mongodb.org/mongo-driver/bson/primitive"
+	"go.mongodb.org/mongo-driver/mongo"
+	"go.mongodb.org/mongo-driver/mongo/options"
+)
+
+type MgoSess struct {
+	Db     string
+	Coll   string
+	Query  interface{}
+	Sorts  []string
+	fields interface{}
+	limit  int64
+	skip   int64
+	M      *MongodbSim
+}
+
+type MgoIter struct {
+	Cursor *mongo.Cursor
+}
+
+func (mt *MgoIter) Next(result interface{}) bool {
+	if mt.Cursor != nil {
+		if mt.Cursor.Next(nil) {
+			err := mt.Cursor.Decode(result)
+			if err != nil {
+				log.Println("mgo cur err", err.Error())
+				mt.Cursor.Close(nil)
+				return false
+			}
+			return true
+		} else {
+			mt.Cursor.Close(nil)
+			return false
+		}
+	} else {
+		return false
+	}
+
+}
+
+func (ms *MgoSess) DB(name string) *MgoSess {
+	ms.Db = name
+	return ms
+}
+
+func (ms *MgoSess) C(name string) *MgoSess {
+	ms.Coll = name
+	return ms
+}
+
+func (ms *MgoSess) Find(q interface{}) *MgoSess {
+	ms.Query = q
+	return ms
+}
+
+func (ms *MgoSess) Select(fields interface{}) *MgoSess {
+	ms.fields = fields
+	return ms
+}
+
+func (ms *MgoSess) Limit(limit int64) *MgoSess {
+	ms.limit = limit
+	return ms
+}
+func (ms *MgoSess) Skip(skip int64) *MgoSess {
+	ms.skip = skip
+	return ms
+}
+
+func (ms *MgoSess) Sort(sorts ...string) *MgoSess {
+	ms.Sorts = sorts
+	return ms
+}
+
+func (ms *MgoSess) Iter() *MgoIter {
+	it := &MgoIter{}
+	find := options.Find()
+	if ms.skip > 0 {
+		find.SetSkip(ms.skip)
+	}
+	if ms.limit > 0 {
+		find.SetLimit(ms.limit)
+	}
+	find.SetBatchSize(100)
+	if len(ms.Sorts) > 0 {
+		sort := bson.M{}
+		for _, k := range ms.Sorts {
+			switch k[:1] {
+			case "-":
+				sort[k[1:]] = -1
+			case "+":
+				sort[k[1:]] = 1
+			default:
+				sort[k] = 1
+			}
+		}
+		find.SetSort(sort)
+	}
+	if ms.fields != nil {
+		find.SetProjection(ms.fields)
+	}
+	cur, err := ms.M.C.Database(ms.Db).Collection(ms.Coll).Find(ms.M.Ctx, ms.Query, find)
+	if err != nil {
+		log.Println("mgo find err", err.Error())
+	} else {
+		it.Cursor = cur
+	}
+	return it
+}
+
+type MongodbSim struct {
+	MongodbAddr string
+	Size        int
+	//	MinSize     int
+	DbName   string
+	C        *mongo.Client
+	Ctx      context.Context
+	ShortCtx context.Context
+	pool     chan bool
+	UserName string
+	Password string
+}
+
+func (m *MongodbSim) GetMgoConn() *MgoSess {
+	//m.Open()
+	ms := &MgoSess{}
+	ms.M = m
+	return ms
+}
+
+func (m *MongodbSim) DestoryMongoConn(ms *MgoSess) {
+	//m.Close()
+	ms.M = nil
+	ms = nil
+}
+
+func (m *MongodbSim) InitPoolDirect() {
+	opts := options.Client()
+	opts.SetConnectTimeout(3 * time.Second)
+	opts.ApplyURI("mongodb://" + m.MongodbAddr)
+	opts.SetMaxPoolSize(uint64(m.Size))
+	opts.SetDirect(true)
+	m.pool = make(chan bool, m.Size)
+
+	if m.UserName != "" && m.Password != "" {
+		cre := options.Credential{
+			Username:   m.UserName,
+			Password:   m.Password,
+			AuthSource: "admin",
+		}
+		opts.SetAuth(cre)
+	}
+
+	opts.SetMaxConnIdleTime(2 * time.Hour)
+	m.Ctx, _ = context.WithTimeout(context.Background(), 99999*time.Hour)
+	m.ShortCtx, _ = context.WithTimeout(context.Background(), 1*time.Minute)
+	client, err := mongo.Connect(m.ShortCtx, opts)
+	if err != nil {
+		log.Println("mgo init error:", err.Error())
+	} else {
+		m.C = client
+		log.Println("init success")
+	}
+}
+
+func (m *MongodbSim) InitPool() {
+	opts := options.Client()
+	opts.SetConnectTimeout(3 * time.Second)
+	opts.ApplyURI("mongodb://" + m.MongodbAddr)
+	opts.SetMaxPoolSize(uint64(m.Size))
+	//opts.SetDirect(true)
+	m.pool = make(chan bool, m.Size)
+
+	if m.UserName != "" && m.Password != "" {
+		cre := options.Credential{
+			Username:   m.UserName,
+			Password:   m.Password,
+			AuthSource: "admin",
+		}
+		opts.SetAuth(cre)
+	}
+
+	opts.SetMaxConnIdleTime(2 * time.Hour)
+	m.Ctx, _ = context.WithTimeout(context.Background(), 99999*time.Hour)
+	m.ShortCtx, _ = context.WithTimeout(context.Background(), 1*time.Minute)
+	client, err := mongo.Connect(m.ShortCtx, opts)
+	if err != nil {
+		log.Println("mgo init error:", err.Error())
+	} else {
+		m.C = client
+		log.Println("init success")
+	}
+}
+
+func (m *MongodbSim) Open() {
+	m.pool <- true
+}
+func (m *MongodbSim) Close() {
+	<-m.pool
+}
+
+// 新建表并生成索引
+func (m *MongodbSim) CreateIndex(c string, models []mongo.IndexModel) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	names, err := coll.Indexes().CreateMany(m.Ctx, models)
+	if err == nil && len(names) > 0 {
+		return true
+	} else {
+		log.Println("CreateIndex Error:", err)
+		return false
+	}
+}
+
+// 批量插入
+func (m *MongodbSim) UpSertBulk(c string, doc ...[]map[string]interface{}) (map[int64]interface{}, bool) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	var writes []mongo.WriteModel
+	for _, d := range doc {
+		write := mongo.NewUpdateOneModel()
+		write.SetFilter(d[0])
+		write.SetUpdate(d[1])
+		write.SetUpsert(true)
+		writes = append(writes, write)
+	}
+	r, e := coll.BulkWrite(m.Ctx, writes)
+	if e != nil {
+		log.Println("mgo upsert error:", e.Error())
+		return nil, false
+	}
+	//	else {
+	//		if r.UpsertedCount != int64(len(doc)) {
+	//			log.Println("mgo upsert uncomplete:uc/dc", r.UpsertedCount, len(doc))
+	//		}
+	//		return true
+	//	}
+	return r.UpsertedIDs, true
+}
+
+// 批量插入
+func (m *MongodbSim) SaveBulk(c string, doc ...map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	var writes []mongo.WriteModel
+	for _, d := range doc {
+		write := mongo.NewInsertOneModel()
+		write.SetDocument(d)
+		writes = append(writes, write)
+	}
+	_, e := coll.BulkWrite(m.Ctx, writes)
+	if e != nil {
+		log.Println("mgo savebulk error:", e.Error())
+		return false
+	}
+	return true
+}
+
+// 保存
+func (m *MongodbSim) Save(c string, doc map[string]interface{}) interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.InsertOne(m.Ctx, doc)
+	if err != nil {
+		return nil
+	}
+	return r.InsertedID
+}
+
+// 更新by Id
+func (m *MongodbSim) UpdateById(c, id string, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)}, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+func (m *MongodbSim) UpdateStrId(c, id string, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, map[string]interface{}{"_id": id}, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+func (m *MongodbSim) UpdateQueryData(c string, query map[string]interface{}, doc map[string]interface{}) bool {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	_, err := coll.UpdateOne(m.Ctx, query, doc)
+	if err != nil {
+		return false
+	}
+	return true
+}
+
+// 删除by id
+func (m *MongodbSim) DeleteById(c, id string) int64 {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.DeleteOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)})
+	if err != nil {
+		return 0
+	}
+	return r.DeletedCount
+}
+
+// 通过条件删除
+func (m *MongodbSim) Delete(c string, query map[string]interface{}) int64 {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r, err := coll.DeleteMany(m.Ctx, query)
+	if err != nil {
+		return 0
+	}
+	return r.DeletedCount
+}
+
+// findbyid
+func (m *MongodbSim) FindById(c, id string) map[string]interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r := coll.FindOne(m.Ctx, map[string]interface{}{"_id": StringTOBsonId(id)})
+	v := map[string]interface{}{}
+	r.Decode(&v)
+	return v
+}
+
+// findone
+func (m *MongodbSim) FindOne(c string, query map[string]interface{}) map[string]interface{} {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	r := coll.FindOne(m.Ctx, query)
+	v := map[string]interface{}{}
+	r.Decode(&v)
+	return v
+}
+
+// find
+func (m *MongodbSim) Find(c string, query map[string]interface{}, sort, fields interface{}) ([]map[string]interface{}, error) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	op := options.Find()
+	r, err := coll.Find(m.Ctx, query, op.SetSort(sort), op.SetProjection(fields))
+	if err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+
+	var results []map[string]interface{}
+	if err = r.All(m.Ctx, &results); err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+	return results, nil
+}
+
+// find
+func (m *MongodbSim) FindLimit(c string, query map[string]interface{}, sort, fields interface{}, limit int64) ([]map[string]interface{}, error) {
+	m.Open()
+	defer m.Close()
+	coll := m.C.Database(m.DbName).Collection(c)
+	op := options.Find()
+	r, err := coll.Find(m.Ctx, query, op.SetSort(sort), op.SetProjection(fields), op.SetLimit(limit))
+	if err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+
+	var results []map[string]interface{}
+	if err = r.All(m.Ctx, &results); err != nil {
+		log.Fatal(err)
+		return nil, err
+	}
+	return results, nil
+}
+
+// 创建_id
+func NewObjectId() primitive.ObjectID {
+	return primitive.NewObjectID()
+}
+
+func StringTOBsonId(id string) primitive.ObjectID {
+	objectId, _ := primitive.ObjectIDFromHex(id)
+	return objectId
+}
+
+func BsonTOStringId(id interface{}) string {
+	return id.(primitive.ObjectID).Hex()
+}

+ 505 - 0
data_tower/src/ul/mysql.go

@@ -0,0 +1,505 @@
+package ul
+
+import (
+	"bytes"
+	"database/sql"
+	"fmt"
+	"log"
+	"reflect"
+	"strings"
+	"time"
+
+	_ "github.com/go-sql-driver/mysql"
+)
+
+type Mysql struct {
+	Address      string  //数据库地址:端口
+	UserName     string  //用户名
+	PassWord     string  //密码
+	DBName       string  //数据库名
+	DB           *sql.DB //数据库连接池对象
+	MaxOpenConns int     //用于设置最大打开的连接数,默认值为0表示不限制。
+	MaxIdleConns int     //用于设置闲置的连接数。
+}
+
+func (m *Mysql) Init() {
+	if m.MaxOpenConns <= 0 {
+		m.MaxOpenConns = 20
+	}
+	if m.MaxIdleConns <= 0 {
+		m.MaxIdleConns = 20
+	}
+	var err error //utf8mb4
+	m.DB, err = sql.Open("mysql", fmt.Sprintf("%s:%s@tcp(%s)/%s?charset=utf8mb4", m.UserName, m.PassWord, m.Address, m.DBName))
+	log.Println(fmt.Sprintf("%s:%s@tcp(%s)/%s?charset=utf8mb4", m.UserName, m.PassWord, m.Address, m.DBName))
+	if err != nil {
+		log.Println(err)
+		return
+	}
+	m.DB.SetMaxOpenConns(m.MaxOpenConns)
+	m.DB.SetMaxIdleConns(m.MaxIdleConns)
+	m.DB.SetConnMaxLifetime(time.Minute * 3)
+	err = m.DB.Ping()
+	if err != nil {
+		log.Println(err)
+	}
+}
+
+// 新增
+func (m *Mysql) Insert(tableName string, data map[string]interface{}) int64 {
+	return m.InsertByTx(nil, tableName, data)
+}
+
+// 带有事务的新增
+func (m *Mysql) InsertByTx(tx *sql.Tx, tableName string, data map[string]interface{}) int64 {
+	fields := []string{}
+	values := []interface{}{}
+	placeholders := []string{}
+	if tableName == "dataexport_order" {
+		if _, ok := data["user_nickname"]; ok {
+			data["user_nickname"] = ""
+		}
+	}
+	for k, v := range data {
+		fields = append(fields, k)
+		values = append(values, v)
+		placeholders = append(placeholders, "?")
+	}
+	q := fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s)", tableName, strings.Join(fields, ","), strings.Join(placeholders, ","))
+	//log.Println("mysql", q, values)
+	return m.InsertBySqlByTx(tx, q, values...)
+}
+
+// sql语句新增
+func (m *Mysql) InsertBySql(q string, args ...interface{}) int64 {
+	return m.InsertBySqlByTx(nil, q, args...)
+}
+
+// 带有事务的sql语句新增
+func (m *Mysql) InsertBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
+	result, _ := m.ExecBySqlByTx(tx, q, args...)
+	if result == nil {
+		return -1
+	}
+	id, err := result.LastInsertId()
+	if err != nil {
+		log.Println(err)
+		return -1
+	}
+	return id
+}
+
+// 批量新增
+func (m *Mysql) InsertIgnoreBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.InsertIgnoreBatchByTx(nil, tableName, fields, values)
+}
+
+// 带事务的批量新增
+func (m *Mysql) InsertIgnoreBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.insertOrReplaceBatchByTx(tx, "INSERT", "IGNORE", tableName, fields, values)
+}
+
+// 批量新增
+func (m *Mysql) InsertBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.InsertBatchByTx(nil, tableName, fields, values)
+}
+
+// 带事务的批量新增
+func (m *Mysql) InsertBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.insertOrReplaceBatchByTx(tx, "INSERT", "", tableName, fields, values)
+}
+
+// 批量更新
+func (m *Mysql) ReplaceBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.ReplaceBatchByTx(nil, tableName, fields, values)
+}
+
+// 带事务的批量更新
+func (m *Mysql) ReplaceBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
+	return m.insertOrReplaceBatchByTx(tx, "REPLACE", "", tableName, fields, values)
+}
+
+func (m *Mysql) insertOrReplaceBatchByTx(tx *sql.Tx, tp string, afterInsert, tableName string, fields []string, values []interface{}) (int64, int64) {
+	placeholders := []string{}
+	for range fields {
+		placeholders = append(placeholders, "?")
+	}
+	placeholder := strings.Join(placeholders, ",")
+	array := []string{}
+	for i := 0; i < len(values)/len(fields); i++ {
+		array = append(array, fmt.Sprintf("(%s)", placeholder))
+	}
+	q := fmt.Sprintf("%s %s INTO %s (%s) VALUES %s", tp, afterInsert, tableName, strings.Join(fields, ","), strings.Join(array, ","))
+	result, _ := m.ExecBySqlByTx(tx, q, values...)
+	if result == nil {
+		return -1, -1
+	}
+	v1, e1 := result.RowsAffected()
+	if e1 != nil {
+		log.Println(e1)
+		return -1, -1
+	}
+	v2, e2 := result.LastInsertId()
+	if e2 != nil {
+		log.Println(e2)
+		return -1, -1
+	}
+	return v1, v2
+}
+
+// sql语句执行
+func (m *Mysql) ExecBySql(q string, args ...interface{}) (sql.Result, error) {
+	return m.ExecBySqlByTx(nil, q, args...)
+}
+
+// sql语句执行,带有事务
+func (m *Mysql) ExecBySqlByTx(tx *sql.Tx, q string, args ...interface{}) (sql.Result, error) {
+	var stmtIns *sql.Stmt
+	var err error
+	if tx == nil {
+		stmtIns, err = m.DB.Prepare(q)
+	} else {
+		stmtIns, err = tx.Prepare(q)
+	}
+	if err != nil {
+		log.Println(err)
+		return nil, err
+	}
+	defer stmtIns.Close()
+	result, err := stmtIns.Exec(args...)
+	if err != nil {
+		log.Println(args, err)
+		return nil, err
+	}
+	return result, nil
+}
+
+/*不等于 map[string]string{"ne":"1"}
+ *不等于多个 map[string]string{"notin":[]interface{}{1,2}}
+ *字段为空 map[string]string{"name":"$isNull"}
+ *字段不为空 map[string]string{"name":"$isNotNull"}
+ */
+func (m *Mysql) Find(tableName string, query map[string]interface{}, fields, order string, start, pageSize int) *[]map[string]interface{} {
+	fs := []string{}
+	vs := []interface{}{}
+	for k, v := range query {
+		rt := reflect.TypeOf(v)
+		rv := reflect.ValueOf(v)
+		if rt.Kind() == reflect.Map {
+			for _, rv_k := range rv.MapKeys() {
+				if rv_k.String() == "ne" {
+					fs = append(fs, fmt.Sprintf("%s!=?", k))
+					vs = append(vs, rv.MapIndex(rv_k).Interface())
+				}
+				if rv_k.String() == "notin" {
+					if len(rv.MapIndex(rv_k).Interface().([]interface{})) > 0 {
+						for _, v := range rv.MapIndex(rv_k).Interface().([]interface{}) {
+							fs = append(fs, fmt.Sprintf("%s!=?", k))
+							vs = append(vs, v)
+						}
+					}
+				}
+				if rv_k.String() == "in" {
+					if len(rv.MapIndex(rv_k).Interface().([]interface{})) > 0 {
+						_fs := fmt.Sprintf("%s in (?", k)
+						for k, v := range rv.MapIndex(rv_k).Interface().([]interface{}) {
+							if k > 0 {
+								_fs += ",?"
+							}
+							vs = append(vs, v)
+						}
+						_fs += ")"
+						fs = append(fs, _fs)
+					}
+				}
+			}
+		} else {
+			if v == "$isNull" {
+				fs = append(fs, fmt.Sprintf("%s is null", k))
+			} else if v == "$isNotNull" {
+				fs = append(fs, fmt.Sprintf("%s is not null", k))
+			} else {
+				fs = append(fs, fmt.Sprintf("%s=?", k))
+				vs = append(vs, v)
+			}
+		}
+	}
+	var buffer bytes.Buffer
+	buffer.WriteString("select ")
+	if fields == "" {
+		buffer.WriteString("*")
+	} else {
+		buffer.WriteString(fields)
+	}
+	buffer.WriteString(" from ")
+	buffer.WriteString(tableName)
+	if len(fs) > 0 {
+		buffer.WriteString(" where ")
+		buffer.WriteString(strings.Join(fs, " and "))
+	}
+	if order != "" {
+		buffer.WriteString(" order by ")
+		buffer.WriteString(order)
+	}
+	if start > -1 && pageSize > 0 {
+		buffer.WriteString(" limit ")
+		buffer.WriteString(fmt.Sprint(start))
+		buffer.WriteString(",")
+		buffer.WriteString(fmt.Sprint(pageSize))
+	}
+	q := buffer.String()
+	//log.Println(q, vs)
+	return m.SelectBySql(q, vs...)
+}
+
+// sql语句查询
+func (m *Mysql) SelectBySql(q string, args ...interface{}) *[]map[string]interface{} {
+	return m.SelectBySqlByTx(nil, q, args...)
+}
+func (m *Mysql) SelectBySqlByTx(tx *sql.Tx, q string, args ...interface{}) *[]map[string]interface{} {
+	return m.Select(0, nil, tx, q, args...)
+}
+func (m *Mysql) Select(bath int, f func(l *[]map[string]interface{}), tx *sql.Tx, q string, args ...interface{}) *[]map[string]interface{} {
+	var stmtOut *sql.Stmt
+	var err error
+	if tx == nil {
+		stmtOut, err = m.DB.Prepare(q)
+	} else {
+		stmtOut, err = tx.Prepare(q)
+	}
+	if err != nil {
+		log.Println(err)
+		return nil
+	}
+	defer stmtOut.Close()
+	rows, err := stmtOut.Query(args...)
+	if err != nil {
+		log.Println(err)
+		return nil
+	}
+	if rows != nil {
+		defer rows.Close()
+	}
+	columns, err := rows.Columns()
+	if err != nil {
+		log.Println(err)
+		return nil
+	}
+	list := []map[string]interface{}{}
+	for rows.Next() {
+		scanArgs := make([]interface{}, len(columns))
+		values := make([]interface{}, len(columns))
+		ret := make(map[string]interface{})
+		for k, _ := range values {
+			scanArgs[k] = &values[k]
+		}
+		err = rows.Scan(scanArgs...)
+		if err != nil {
+			log.Println(err)
+			break
+		}
+		for i, col := range values {
+			if v, ok := col.([]uint8); ok {
+				ret[columns[i]] = string(v)
+			} else {
+				ret[columns[i]] = col
+			}
+		}
+		list = append(list, ret)
+		if bath > 0 && len(list) == bath {
+			f(&list)
+			list = []map[string]interface{}{}
+		}
+	}
+	if bath > 0 && len(list) > 0 {
+		f(&list)
+		list = []map[string]interface{}{}
+	}
+	return &list
+}
+func (m *Mysql) SelectByBath(bath int, f func(l *[]map[string]interface{}), q string, args ...interface{}) {
+	m.SelectByBathByTx(bath, f, nil, q, args...)
+}
+func (m *Mysql) SelectByBathByTx(bath int, f func(l *[]map[string]interface{}), tx *sql.Tx, q string, args ...interface{}) {
+	m.Select(bath, f, tx, q, args...)
+}
+func (m *Mysql) FindOne(tableName string, query map[string]interface{}, fields, order string) *map[string]interface{} {
+	list := m.Find(tableName, query, fields, order, 0, 1)
+	if list != nil && len(*list) == 1 {
+		temp := (*list)[0]
+		return &temp
+	}
+	return nil
+}
+
+// 修改
+func (m *Mysql) Update(tableName string, query, update map[string]interface{}) bool {
+	return m.UpdateByTx(nil, tableName, query, update)
+}
+
+// 带事务的修改
+func (m *Mysql) UpdateByTx(tx *sql.Tx, tableName string, query, update map[string]interface{}) bool {
+	q_fs := []string{}
+	u_fs := []string{}
+	values := []interface{}{}
+	for k, v := range update {
+		q_fs = append(q_fs, fmt.Sprintf("%s=?", k))
+		values = append(values, v)
+	}
+	for k, v := range query {
+		u_fs = append(u_fs, fmt.Sprintf("%s=?", k))
+		values = append(values, v)
+	}
+	q := fmt.Sprintf("update %s set %s where %s", tableName, strings.Join(q_fs, ","), strings.Join(u_fs, " and "))
+	//log.Println(q, values)
+	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) >= 0
+}
+
+// 删除
+func (m *Mysql) Delete(tableName string, query map[string]interface{}) bool {
+	return m.DeleteByTx(nil, tableName, query)
+}
+func (m *Mysql) DeleteByTx(tx *sql.Tx, tableName string, query map[string]interface{}) bool {
+	fields := []string{}
+	values := []interface{}{}
+	for k, v := range query {
+		fields = append(fields, fmt.Sprintf("%s=?", k))
+		values = append(values, v)
+	}
+	q := fmt.Sprintf("delete from %s where %s", tableName, strings.Join(fields, " and "))
+	log.Println(q, values)
+	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) > 0
+}
+
+// 修改或删除
+func (m *Mysql) UpdateOrDeleteBySql(q string, args ...interface{}) int64 {
+	return m.UpdateOrDeleteBySqlByTx(nil, q, args...)
+}
+
+// 带事务的修改或删除
+func (m *Mysql) UpdateOrDeleteBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
+	result, err := m.ExecBySqlByTx(tx, q, args...)
+	if err != nil {
+		log.Println(err)
+		return -1
+	}
+	count, err := result.RowsAffected()
+	if err != nil {
+		log.Println(err)
+		return -1
+	}
+	return count
+}
+
+// 总数
+func (m *Mysql) Count(tableName string, query map[string]interface{}) int64 {
+	fields := []string{}
+	values := []interface{}{}
+	for k, v := range query {
+		rt := reflect.TypeOf(v)
+		rv := reflect.ValueOf(v)
+		if rt.Kind() == reflect.Map {
+			for _, rv_k := range rv.MapKeys() {
+				if rv_k.String() == "ne" {
+					fields = append(fields, fmt.Sprintf("%s!=?", k))
+					values = append(values, rv.MapIndex(rv_k).Interface())
+				}
+				if rv_k.String() == "notin" {
+					if len(rv.MapIndex(rv_k).Interface().([]interface{})) > 0 {
+						for _, v := range rv.MapIndex(rv_k).Interface().([]interface{}) {
+							fields = append(fields, fmt.Sprintf("%s!=?", k))
+							values = append(values, v)
+						}
+					}
+				}
+				if rv_k.String() == "in" {
+					if len(rv.MapIndex(rv_k).Interface().([]interface{})) > 0 {
+						_fs := fmt.Sprintf("%s in (?", k)
+						for k, v := range rv.MapIndex(rv_k).Interface().([]interface{}) {
+							if k > 0 {
+								_fs += ",?"
+							}
+							values = append(values, v)
+						}
+						_fs += ")"
+						fields = append(fields, _fs)
+					}
+				}
+			}
+		} else if v == "$isNull" {
+			fields = append(fields, fmt.Sprintf("%s is null", k))
+		} else if v == "$isNotNull" {
+			fields = append(fields, fmt.Sprintf("%s is not null", k))
+		} else {
+			fields = append(fields, fmt.Sprintf("%s=?", k))
+			values = append(values, v)
+		}
+	}
+	q := fmt.Sprintf("select count(1) as count from %s", tableName)
+	if len(query) > 0 {
+		q += fmt.Sprintf(" where %s", strings.Join(fields, " and "))
+	}
+	log.Println(q, values)
+	return m.CountBySql(q, values...)
+}
+func (m *Mysql) CountBySql(q string, args ...interface{}) int64 {
+	stmtIns, err := m.DB.Prepare(q)
+	if err != nil {
+		log.Println(err)
+		return -1
+	}
+	defer stmtIns.Close()
+
+	rows, err := stmtIns.Query(args...)
+	if err != nil {
+		log.Println(err)
+		return -1
+	}
+	if rows != nil {
+		defer rows.Close()
+	}
+	var count int64 = -1
+	if rows.Next() {
+		err = rows.Scan(&count)
+		if err != nil {
+			log.Println(err)
+		}
+	}
+	return count
+}
+
+// 执行事务
+func (m *Mysql) ExecTx(msg string, f func(tx *sql.Tx) bool) bool {
+	tx, err := m.DB.Begin()
+	if err != nil {
+		log.Println(msg, "获取事务错误", err)
+	} else {
+		if f(tx) {
+			if err := tx.Commit(); err != nil {
+				log.Println(msg, "提交事务错误", err)
+			} else {
+				return true
+			}
+		} else {
+			if err := tx.Rollback(); err != nil {
+				log.Println(msg, "事务回滚错误", err)
+			}
+		}
+	}
+	return false
+}
+
+/*************方法命名不规范,上面有替代方法*************/
+func (m *Mysql) Query(query string, args ...interface{}) *[]map[string]interface{} {
+	return m.SelectBySql(query, args...)
+}
+
+func (m *Mysql) QueryCount(query string, args ...interface{}) (count int) {
+	count = -1
+	if !strings.Contains(strings.ToLower(query), "count(*)") {
+		fmt.Println("QueryCount need query like < select count(*) from ..... >")
+		return
+	}
+	count = int(m.CountBySql(query, args...))
+	return
+}

+ 292 - 0
data_tower/src/write.go

@@ -0,0 +1,292 @@
+package main
+
+import (
+	log "github.com/donnie4w/go-logger/logger"
+	"go.mongodb.org/mongo-driver/bson"
+	qu "qfw/util"
+	"time"
+	u "ul"
+)
+
+var RuleTag = map[string]string{
+	"灾害预警监测":    "铁塔-应急",
+	"渔政执法监控":    "铁塔-农业",
+	"应急专网":      "铁塔-应急",
+	"应急广播":      "铁塔-应急",
+	"危化品园区监控":   "铁塔-园区",
+	"铁路护路监控":    "铁塔-政法",
+	"水面交通监控":    "铁塔-交通",
+	"水环境监测":     "铁塔-环保",
+	"数字乡村":      "铁塔-农业",
+	"湿地保护监控":    "铁塔-国土",
+	"林草防火监控":    "铁塔-林草",
+	"矿产资源监管":    "铁塔-国土",
+	"秸秆禁烧监控":    "铁塔-环保",
+	"交通监控":      "铁塔-交通",
+	"河湖及水利设施监控": "铁塔-水利",
+	"海防监控":      "铁塔-政法",
+	"公安专网":      "铁塔-政法",
+	"耕地保护监控":    "铁塔-国土",
+	"其他场景":      "铁塔-其他场景",
+	"大气质量监测":    "铁塔-环保",
+}
+
+// 写铁塔历史数据
+func writeTowerBxInfo() {
+	sess := u.SaveMgo.GetMgoConn()
+	defer u.SaveMgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(u.SaveMgo.DbName).C("zktest_tower_info").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		getBxTidbInfo(tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+
+}
+
+// 灌入tidb数据
+func getBxTidbInfo(info map[string]interface{}) {
+	infoid := qu.ObjToString(info["infoid"])
+	//删除冗余字段
+	delete(info, "_id")
+	delete(info, "infoid")
+	//标讯唯一id
+	info["id"] = infoid
+	info["rulename"] = ""
+	u.InsertMysqlBiData("source_customer_data_ttzl", info, infoid)
+	return
+	//词包映射关系
+	info["rulename"] = getRuleName(qu.ObjToString(info["tagname"]))
+	//标讯类型···转换
+	info["toptype"], info["subtype"] = getTopSubtype(qu.ObjToString(info["toptype"]), qu.ObjToString(info["subtype"]))
+	//是否竞品网站
+	info["isCompetitors"] = "是"
+	//剑鱼链接
+	info["jybxhref"] = "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + infoid
+	//标讯唯一id
+	info["id"] = infoid
+	//正文查询···
+	data := u.PyMgo.FindOne("qlm_zbcg_details", bson.M{"infoid": infoid})
+	details := qu.ObjToString(data["details"])
+	if details == "" {
+		details = qu.ObjToString(data["detail"])
+	}
+	//插入标讯数据
+	inb := u.InsertMysqlBiData("customer_data_ttzl", info, infoid)
+	if inb >= 0 {
+		d_info := map[string]interface{}{}
+		d_info["info_id"] = infoid
+		d_info["msg_id"] = inb
+		d_info["isHistory"] = "是"
+		if details != "" {
+			d_info["details"] = details
+		}
+		//插入正文关系数据
+		u.InsertMysqlBiData("customer_data_ttzl_gl", d_info, infoid)
+	}
+	//附件查询···
+	if data != nil && inb >= 0 {
+		projectinfo := *qu.ObjToMap(data["projectinfo"])
+		attachments := *qu.ObjToMap(projectinfo["attachments"])
+		for _, v := range attachments {
+			if jf := *qu.ObjToMap(v); jf != nil && len(jf) > 0 {
+				fid := qu.ObjToString(jf["fid"])
+				if fid == "" {
+					continue
+				}
+				j_info := map[string]interface{}{}
+				if ftype := qu.ObjToString(jf["ftype"]); ftype != "" {
+					j_info["suffix"] = ftype
+				}
+				if filename := qu.ObjToString(jf["filename"]); filename != "" {
+					j_info["filename"] = filename
+				}
+				if size := qu.ObjToString(jf["size"]); size != "" {
+					j_info["size"] = size
+				}
+				j_info["oss"] = fid
+				if len(j_info) > 0 {
+					j_info["infoid"] = infoid
+					j_info["create_time"] = time.Unix(time.Now().Unix(), 0).Format(u.TimeLayout)
+					//插入附件关系数据
+					u.InsertMysqlBiData("customer_data_ttzl_fj", j_info, infoid)
+				}
+			}
+		}
+	}
+}
+
+// 写铁塔历史数据
+func writeTowerNhInfo() {
+	sess := u.SaveMgo.GetMgoConn()
+	defer u.SaveMgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(u.SaveMgo.DbName).C("zktest_tower_nh_info").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		getNhTidbInfo(tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 灌入tidb数据
+func getNhTidbInfo(info map[string]interface{}) {
+	zb_type, jg_type := qu.ObjToString(info["zb_type"]), qu.ObjToString(info["jg_type"])
+	//删除冗余字段
+	delete(info, "_id")
+	delete(info, "zb_type")
+	delete(info, "jg_type")
+	info["zb_toptype"], info["zb_subtype"] = zb_type, jg_type
+	u.InsertMysqlBiData("source_customer_data_ttzl_project", info, qu.ObjToString(info["projectId"]))
+	return
+	info["zb_toptype"], info["zb_subtype"] = getNhTopSubtype(zb_type)
+	info["toptype"], info["subtype"] = getNhTopSubtype(jg_type)
+	if zb_infoid := qu.ObjToString(info["zb_infoid"]); zb_infoid != "" {
+		zb_jybxhref := "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + zb_infoid
+		info["zb_jybxhref"] = zb_jybxhref
+	}
+	if infoid := qu.ObjToString(info["infoid"]); infoid != "" {
+		jybxhref := "https://www.jianyu360.cn/succbi/ttzl/app/dzbi.app/detail.spg?I_id=" + infoid
+		info["jybxhref"] = jybxhref
+	}
+
+	u.InsertMysqlBiData("customer_data_ttzl_project", info, qu.ObjToString(info["projectId"]))
+}
+
+// 获取词包
+func getRuleName(tagname string) string {
+	tag := RuleTag[tagname]
+	//if tag == "" {
+	//	tag = "铁塔-其他场景"
+	//}
+	return tag
+}
+
+// 获取类型
+func getTopSubtype(qlm_toptype string, qlm_subtype string) (string, string) {
+	jy_toptype, jy_subtype := "", ""
+	if qlm_toptype == "公告" {
+		jy_toptype = "招标"
+		jy_subtype = "招标"
+	} else if qlm_toptype == "预告" {
+		if qlm_subtype == "意见征集" {
+			jy_toptype = "预告"
+			jy_subtype = "论证意见"
+		}
+		if qlm_subtype == "招标预告" {
+			jy_toptype = "预告"
+			jy_subtype = "预告"
+		}
+	} else if qlm_toptype == "变更" {
+		if qlm_subtype == "信息变更" {
+			jy_toptype = "招标"
+			jy_subtype = "变更"
+		}
+		if qlm_subtype == "答疑公告" {
+			jy_toptype = "招标"
+			jy_subtype = "其它"
+		}
+	} else if qlm_toptype == "结果" {
+		if qlm_subtype == "废标公告" {
+			jy_toptype = "结果"
+			jy_subtype = "废标"
+		}
+		if qlm_subtype == "流标公告" {
+			jy_toptype = "结果"
+			jy_subtype = "流标"
+		}
+		if qlm_subtype == "开标公示" {
+			jy_toptype = "结果"
+			jy_subtype = "其它"
+		}
+		if qlm_subtype == "候选人公示" {
+			jy_toptype = "结果"
+			jy_subtype = "中标"
+		}
+		if qlm_subtype == "中标通知" {
+			jy_toptype = "结果"
+			jy_subtype = "成交"
+		}
+		if qlm_subtype == "合同公告" {
+			jy_toptype = "其它"
+			jy_subtype = "合同"
+		}
+	} else if qlm_toptype == "其他" {
+		if qlm_subtype == "验收合同" {
+			jy_toptype = "其它"
+			jy_subtype = "验收"
+		}
+		if qlm_subtype == "违规公告" {
+			jy_toptype = "其它"
+			jy_subtype = "违规"
+		}
+		if qlm_subtype == "其他公告" {
+			jy_toptype = "其它"
+			jy_subtype = "其它"
+		}
+	} else {
+
+	}
+	return jy_toptype, jy_subtype
+}
+
+// 获取招标类型
+func getNhTopSubtype(nh_type string) (string, string) {
+	jy_toptype, jy_subtype := "", ""
+	if nh_type == "招标公告" {
+		jy_toptype = "招标"
+		jy_subtype = "招标"
+	} else if nh_type == "重新招标" {
+		jy_toptype = "招标"
+		jy_subtype = "招标"
+	} else if nh_type == "意见征集" {
+		jy_toptype = "预告"
+		jy_subtype = "论证意见"
+	} else if nh_type == "招标预告" {
+		jy_toptype = "预告"
+		jy_subtype = "预告"
+	} else if nh_type == "信息变更" {
+		jy_toptype = "招标"
+		jy_subtype = "变更"
+	} else if nh_type == "答疑公告" {
+		jy_toptype = "招标"
+		jy_subtype = "其它"
+	} else if nh_type == "废标公告" {
+		jy_toptype = "结果"
+		jy_subtype = "废标"
+	} else if nh_type == "流标公告" {
+		jy_toptype = "结果"
+		jy_subtype = "流标"
+	} else if nh_type == "开标公示" {
+		jy_toptype = "结果"
+		jy_subtype = "其它"
+	} else if nh_type == "候选人公示" {
+		jy_toptype = "结果"
+		jy_subtype = "中标"
+	} else if nh_type == "中标通知" {
+		jy_toptype = "结果"
+		jy_subtype = "成交"
+	} else if nh_type == "合同公告" {
+		jy_toptype = "其它"
+		jy_subtype = "合同"
+	} else if nh_type == "验收合同" {
+		jy_toptype = "其它"
+		jy_subtype = "验收"
+	} else if nh_type == "违规公告" {
+		jy_toptype = "其它"
+		jy_subtype = "违规"
+	} else if nh_type == "其他公告" {
+		jy_toptype = "其它"
+		jy_subtype = "其它"
+	} else {
+
+	}
+	return jy_toptype, jy_subtype
+}

+ 1 - 1
data_ylqx/src/main.go

@@ -14,7 +14,7 @@ func init() {
 	//ul.IsDev = true
 	//ul.IsDev = true
 	//ul.IsLocal = true
 	//ul.IsLocal = true
 	ul.InitClass()
 	ul.InitClass()
-	//log.Debug("测试接口...", ul.PostReliability("布展工程"))
+	log.Debug("测试接口...", ul.PostReliability("布展工程"))
 }
 }
 
 
 func main() {
 func main() {

+ 156 - 75
listen_data/src/main.go

@@ -14,13 +14,52 @@ import (
 )
 )
 
 
 var (
 var (
-	sysconfig                                                            map[string]interface{} //配置文件
-	save_mgo, site_mgo, ext_mgo, python_mgo, qy_mgo                      *MongodbSim            //mongodb操作对象
-	save_c_name, site_c_name, python_c_name, xlsx_name, site_unique_name string
-	prepareData                                                          []map[string]interface{}
-	startRun, startSend                                                  string
-	MysqlGlobalTool                                                      *Mysql
+	sysconfig                               map[string]interface{} //配置文件
+	save_mgo, site_mgo                      *MongodbSim
+	ext_mgo, python_mgo, qy_mgo             *MongodbSim //mongodb操作对象
+	save_c_name, site_c_name, python_c_name string
+	xlsx_name, site_unique_name             string
+	prepareData                             []map[string]interface{}
+	startRun, startSend                     string
+	MysqlGlobalTool                         *Mysql
+	isLocal                                 bool
 )
 )
+var Regions = map[string]string{
+	"山东省":           "山东",
+	"浙江省":           "浙江",
+	"海南省":           "海南",
+	"江苏省":           "江苏",
+	"辽宁省":           "辽宁",
+	"黑龙江省":         "黑龙江",
+	"上海市":           "上海",
+	"吉林省":           "吉林",
+	"西藏自治区":       "西藏",
+	"北京市":           "北京",
+	"福建省":           "福建",
+	"河北省":           "河北",
+	"山西省":           "山西",
+	"天津市":           "天津",
+	"四川省":           "四川",
+	"广东省":           "广东",
+	"甘肃省":           "甘肃",
+	"安徽省":           "安徽",
+	"湖北省":           "湖北",
+	"贵州省":           "贵州",
+	"江西省":           "江西",
+	"宁夏回族自治区":   "宁夏",
+	"新疆维吾尔自治区": "新疆",
+	"重庆市":           "重庆",
+	"青海省":           "青海",
+	"云南省":           "云南",
+	"陕西省":           "陕西",
+	"湖南省":           "湖南",
+	"内蒙古自治区":     "内蒙古",
+	"河南省":           "河南",
+	"广西壮族自治区":   "广西",
+	"香港特别行政区":   "香港",
+	"澳门特别行政区":   "澳门",
+	"台湾省":           "台湾",
+}
 
 
 func initMgo() {
 func initMgo() {
 	saveconf := sysconfig["save_mgodb"].(map[string]interface{})
 	saveconf := sysconfig["save_mgodb"].(map[string]interface{})
@@ -56,10 +95,10 @@ func initMgo() {
 	site_unique_name = qu.ObjToString(sysconfig["site_unique_name"])
 	site_unique_name = qu.ObjToString(sysconfig["site_unique_name"])
 	xlsx_name = qu.ObjToString(sysconfig["xlsx_name"])
 	xlsx_name = qu.ObjToString(sysconfig["xlsx_name"])
 	log.Println(site_unique_name, xlsx_name)
 	log.Println(site_unique_name, xlsx_name)
-
 }
 }
 
 
 func init() {
 func init() {
+	isLocal = true
 	return
 	return
 	qu.ReadConfig(&sysconfig)
 	qu.ReadConfig(&sysconfig)
 	//加载配置文件
 	//加载配置文件
@@ -68,73 +107,121 @@ func init() {
 	flag.Parse()
 	flag.Parse()
 	initMgo()
 	initMgo()
 }
 }
-
 func main() {
 func main() {
+	if !isLocal {
+		ext_mgo = &MongodbSim{
+			MongodbAddr: "172.17.4.85:27080",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "",
+			Password:    "",
+		}
+		ext_mgo.InitPool()
 
 
-	//MysqlGlobalTool = &Mysql{
-	//	Address:  "192.168.3.217:4000",
-	//	UserName: "root",
-	//	PassWord: "=PDT49#80Z!RVv52_z",
-	//	DBName:   "global_common_data",
-	//}
-	//MysqlGlobalTool.Init()
-
-	//qy_mgo = &MongodbSim{
-	//	MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
-	//	DbName:      "mixdata",
-	//	Size:        10,
-	//	UserName:    "zhengkun",
-	//	Password:    "zk@123123",
-	//}
-	//qy_mgo.InitPool()
-
-	//python_mgo = &MongodbSim{
-	//	MongodbAddr: "172.17.4.87:27080",
-	//	DbName:      "qfw",
-	//	Size:        10,
-	//	UserName:    "",
-	//	Password:    "",
-	//}
-	//python_mgo.InitPool()
-	//
-	//ext_mgo = &MongodbSim{
-	//	MongodbAddr: "172.17.4.85:27080",
-	//	DbName:      "qfw",
-	//	Size:        10,
-	//	UserName:    "",
-	//	Password:    "",
-	//}
-	//ext_mgo.InitPool()
-
-	save_mgo = &MongodbSim{
-		MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
-		DbName:      "qfw",
-		Size:        10,
-		UserName:    "zhengkun",
-		Password:    "zk@123123",
+		python_mgo = &MongodbSim{
+			MongodbAddr: "172.17.4.181:27001",
+			DbName:      "mixdata",
+			Size:        10,
+			UserName:    "", Password: "",
+		}
+		python_mgo.InitPool()
+
+		qy_mgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "mixdata",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		qy_mgo.InitPool()
+
+		save_mgo = &MongodbSim{
+			MongodbAddr: "172.17.145.163:27083,172.17.4.187:27082",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		save_mgo.InitPool()
+	} else {
+		//MysqlGlobalTool = &Mysql{
+		//	Address:  "127.0.0.1:15001",
+		//	UserName: "zhengkun",
+		//	PassWord: "Zk#20220824",
+		//	DBName:   "global_common_data",
+		//}
+		//MysqlGlobalTool.Init()
+
+		//python_mgo = &MongodbSim{
+		//	MongodbAddr: "172.17.4.87:27080",
+		//	DbName:      "qfw",
+		//	Size:        10,
+		//	UserName:    "",
+		//	Password:    "",
+		//}
+		//python_mgo.InitPool()
+
+		//87机器-12003
+		//python_mgo = &MongodbSim{
+		//	MongodbAddr: "127.0.0.1:12003",
+		//	DbName:      "editor",
+		//	Size:        10,
+		//	UserName:    "",
+		//	Password:    "",
+		//}
+		//python_mgo.InitPoolDirect()
+
+		//qy_mgo = &MongodbSim{
+		//	MongodbAddr: "127.0.0.1:12005",
+		//	DbName:      "mixdata",
+		//	Size:        10,
+		//	UserName:    "zhengkun",
+		//	Password:    "zk@123123",
+		//}
+		//qy_mgo.InitPoolDirect()
+
+		save_mgo = &MongodbSim{
+			MongodbAddr: "127.0.0.1:12005",
+			DbName:      "qfw",
+			Size:        10,
+			UserName:    "zhengkun",
+			Password:    "zk@123123",
+		}
+		save_mgo.InitPoolDirect()
+
+		//save_mgo = &MongodbSim{
+		//	MongodbAddr: "127.0.0.1:27017",
+		//	DbName:      "zhengkun",
+		//	Size:        10,
+		//	UserName:    "",
+		//	Password:    "",
+		//}
+		//save_mgo.InitPool()
+
+		//save_mgo = &MongodbSim{
+		//	MongodbAddr: "192.168.3.167:27080",
+		//	DbName:      "jyqyfw_historyData2023_1",
+		//	Size:        10,
+		//	UserName:    "",
+		//	Password:    "",
+		//}
+		//save_mgo.InitPool()
+		//
+		//save_mgo = &MongodbSim{
+		//	MongodbAddr: "127.0.0.1:27017",
+		//	DbName:      "zhengkun",
+		//	Size:        10,
+		//	UserName:    "",
+		//	Password:    "",
+		//}
+		//save_mgo.InitPool()
 	}
 	}
-	save_mgo.InitPool()
-
-	//save_mgo = &MongodbSim{
-	//	MongodbAddr: "127.0.0.1:12005",
-	//	DbName:      "qfw",
-	//	Size:        10,
-	//	UserName:    "zhengkun",
-	//	Password:    "zk@123123",
-	//}
-	//save_mgo.InitPoolDirect()
-
-	//save_mgo = &MongodbSim{
-	//	MongodbAddr: "127.0.0.1:27017",
-	//	DbName:      "zhengkun",
-	//	Size:        10,
-	//	UserName:    "",
-	//	Password:    "",
-	//}
-	//save_mgo.InitPool()
+	//jisuantime1030("res/清洗时间.txt")
+	//jisuannumber1030("res/清洗数量.txt")
 
 
 	return
 	return
 
 
+	time.Sleep(99999 * time.Hour)
 	/*
 	/*
 		repairYiXieChaData() 		//医械查
 		repairYiXieChaData() 		//医械查
 		dealWithClassData()			//AB 匹配
 		dealWithClassData()			//AB 匹配
@@ -152,31 +239,25 @@ func main() {
 	} else {
 	} else {
 		log.Println("正常监听...")
 		log.Println("正常监听...")
 	}
 	}
-
 	time.Sleep(99999 * time.Hour)
 	time.Sleep(99999 * time.Hour)
 }
 }
 
 
 func dealWithSiteData() {
 func dealWithSiteData() {
-
 	cur_time := time.Now().Unix()
 	cur_time := time.Now().Unix()
 	today := GetOneWeekDay(TimeStampToString(cur_time))
 	today := GetOneWeekDay(TimeStampToString(cur_time))
 	if today == 7 || today == 6 {
 	if today == 7 || today == 6 {
 		log.Println("今个周末...休息休息")
 		log.Println("今个周末...休息休息")
 		return
 		return
 	}
 	}
-
 	prepareXlsxSiteData() //准备数据
 	prepareXlsxSiteData() //准备数据
-
 	if prepareData == nil || len(prepareData) == 0 {
 	if prepareData == nil || len(prepareData) == 0 {
 		log.Println("异常表site_unique_new...未加载数据...")
 		log.Println("异常表site_unique_new...未加载数据...")
 		return
 		return
 	}
 	}
-
 	now := time.Now()
 	now := time.Now()
 	durdays := 7 //周期7天 假设今天5月15日   周六 now.Day()
 	durdays := 7 //周期7天 假设今天5月15日   周六 now.Day()
 	start := time.Date(now.Year(), now.Month(), now.Day()-durdays, 0, 0, 0, 0, time.Local).Unix()
 	start := time.Date(now.Year(), now.Month(), now.Day()-durdays, 0, 0, 0, 0, time.Local).Unix()
 	end := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).Unix()
 	end := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).Unix()
-
 	log.Println(start, end)
 	log.Println(start, end)
 	q := map[string]interface{}{
 	q := map[string]interface{}{
 		"comeintime": map[string]interface{}{
 		"comeintime": map[string]interface{}{
@@ -237,7 +318,7 @@ func dealWithSiteData() {
 	total = 0
 	total = 0
 	for tmp := make(map[string]interface{}); it_python.Next(&tmp); total++ {
 	for tmp := make(map[string]interface{}); it_python.Next(&tmp); total++ {
 		//if total%100000 == 0 {
 		//if total%100000 == 0 {
-		//	log.Println("current:", total)
+		//	log.Println("cur:", total)
 		//}
 		//}
 		site := qu.ObjToString(tmp["site"])
 		site := qu.ObjToString(tmp["site"])
 		spidercode := qu.ObjToString(tmp["spidercode"])
 		spidercode := qu.ObjToString(tmp["spidercode"])

+ 12807 - 0
listen_data/src/mark

@@ -69,3 +69,12810 @@
   },
   },
   "xlsx_name" : "site_data.xlsx"
   "xlsx_name" : "site_data.xlsx"
 }
 }
+
+
+// 导出进去抽取数据...
+func exportEarlyExtInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("64f0b9000000000000000000"),
+			"$lt":  StringTOBsonId("64f20a800000000000000000"),
+		},
+	}, 0
+	ZB, JG := map[string]int{}, map[string]int{}
+	ZB_Info, JG_Info := map[string]string{}, map[string]string{}
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Select(map[string]interface{}{
+		"extracttype": 1,
+		"buyer":       1,
+		"toptype":     1,
+		"site":        1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", len(ZB), "~", len(JG))
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		if extracttype := qu.IntAll(tmp["extracttype"]); extracttype == 1 {
+			site := qu.ObjToString(tmp["site"])
+			toptype := qu.ObjToString(tmp["toptype"])
+			buyer := qu.ObjToString(tmp["buyer"])
+			if buyer == "" {
+				if toptype == "招标" {
+					num := qu.IntAll(ZB[site])
+					ZB[site] = num + 1
+					if ZB_Info[site] == "" {
+						ZB_Info[site] = tmpid
+					}
+				}
+				if toptype == "结果" {
+					num := qu.IntAll(JG[site])
+					JG[site] = num + 1
+					if JG_Info[site] == "" {
+						JG_Info[site] = tmpid
+					}
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", len(ZB), "~", len(JG))
+
+	for k, v := range ZB {
+		save_mgo.Save("zktest_zhaobiao_0906", map[string]interface{}{
+			"site":  k,
+			"total": v,
+			"id":    ZB_Info[k],
+		})
+	}
+	for k, v := range JG {
+		save_mgo.Save("zktest_jieguo_0906", map[string]interface{}{
+			"site":  k,
+			"total": v,
+			"id":    JG_Info[k],
+		})
+	}
+	log.Debug("is save over ...")
+}
+
+func exportBuyerBugetInfo() {
+	dataArr, _ := save_mgo.Find("zktest_extract_moban_0525", bson.M{"i_ckdata": 2}, nil, map[string]interface{}{
+		"id":        1,
+		"v_taginfo": 1,
+	})
+	log.Debug(len(dataArr))
+	isok := 0
+	for _, v := range dataArr {
+		v_taginfo := *qu.ObjToMap(v["v_taginfo"])
+		tmpid := qu.ObjToString(v["id"])
+		if qu.Int64All(v_taginfo["buyer"]) == 2 || qu.Int64All(v_taginfo["budget"]) == 2 {
+			isok++
+			save_mgo.Save("zktest_buyer_budget_id", map[string]interface{}{
+				"id": tmpid,
+			})
+		}
+	}
+	log.Debug("is over ", isok)
+}
+
+// 导出安恒数据信息
+func exportAnHengInfo() {
+	ff, _ := xlsx.OpenFile("res/" + "anheng.xlsx")
+	temp, list, total := map[string]string{}, []string{}, 0
+	for _, sheet := range ff.Sheets {
+		isok := 0
+		for row_index, row := range sheet.Rows {
+			if row_index%10000 == 0 {
+				log.Debug("cur index ", row_index)
+			}
+			var str []string
+			for _, cell := range row.Cells {
+				s := cell.String()
+				s = strings.ReplaceAll(s, " ", "")
+				str = append(str, s)
+			}
+			if len(str) > 0 {
+				isok++
+				uuid := str[0]
+				if uuid != "" {
+					tmpid := decodeSEUrl(uuid)
+					if temp[tmpid] == "" {
+						list = append(list, tmpid)
+						temp[tmpid] = tmpid
+					}
+					temp[tmpid] = tmpid
+				}
+			}
+		}
+		total += isok
+		log.Debug("is sheet over ", sheet.Name, " 数量:", isok)
+	}
+	log.Debug("is anheng over ", total, "~", len(temp))
+
+	for _, v := range list {
+		save_mgo.Save("zktest_anheng_0904", map[string]interface{}{
+			"id": v,
+		})
+	}
+	log.Debug("is over ......", len(list))
+}
+
+func export166info() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	pool_mgo := make(chan bool, 10)
+	wg_mgo := &sync.WaitGroup{}
+	it := sess.DB(save_mgo.DbName).C("zktest_liantong_source_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		//多线程保存
+		pool_mgo <- true
+		wg_mgo.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-pool_mgo
+				wg_mgo.Done()
+			}()
+			ext_mgo.Save("zzzzzzzzz", tmp)
+		}(tmp)
+		tmp = make(map[string]interface{})
+	}
+	wg_mgo.Wait()
+	log.Debug("is over ", total)
+}
+
+func exportAllSource(FromColl string, ToColl string, TagStr string) {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C(FromColl).Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmp["month_tag"] = TagStr
+		save_mgo.Save(ToColl, tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 等等
+func exportYS() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("zktest_liantong_diff").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		tmpid := qu.ObjToString(tmp["_id"])
+		new_buyer := qu.ObjToString(tmp["new_buyer"])
+		old_buyer := qu.ObjToString(tmp["old_buyer"])
+		if new_buyer != old_buyer {
+			data := save_mgo.FindById("zktest_liantong_source_06", tmpid)
+			detail := qu.ObjToString(data["detail"])
+			if strings.Contains(detail, new_buyer) {
+				isok++
+				save_mgo.Save("zktest_liantong_diff_buyer", tmp)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 修复数据-抽取表
+func repair0829() {
+	sess := ext_mgo.GetMgoConn()
+	defer ext_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(ext_mgo.DbName).C("zktest_repair_0829").Find(&q).Select(map[string]interface{}{
+		"area":     1,
+		"city":     1,
+		"district": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		update := map[string]interface{}{
+			"area":     qu.ObjToString(tmp["area"]),
+			"city":     qu.ObjToString(tmp["city"]),
+			"district": qu.ObjToString(tmp["district"]),
+		}
+		ext_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+			"$set": update,
+		})
+		ext_mgo.UpdateById("result_20220219", tmpid, map[string]interface{}{
+			"$set": update,
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 导出数据
+func export0808() {
+	isok := 0
+	ff, _ := xlsx.OpenFile("res/" + "liantong.xlsx")
+	for _, sheet := range ff.Sheets {
+		for row_index, row := range sheet.Rows {
+			if row_index%1000 == 0 {
+				log.Debug("cur index ", row_index)
+			}
+			var str []string
+			for _, cell := range row.Cells {
+				s := cell.String()
+				str = append(str, s)
+			}
+			if row_index > 0 {
+				bidamount := qu.Float64All(str[0])
+				buyer := qu.ObjToString(str[1])
+				s_winner := qu.ObjToString(str[2])
+				uuid := qu.ObjToString(str[3])
+				tmpid := decodeSEUrl(uuid)
+
+				save_mgo.Save("1123123123", map[string]interface{}{
+					"id":        tmpid,
+					"bidamount": bidamount,
+					"buyer":     buyer,
+					"s_winner":  s_winner,
+				})
+				isok++
+			}
+		}
+	}
+	log.Debug("is over ", isok)
+}
+
+// 导出联通验证数据
+func exportyanzhengliantong() {
+	sess2 := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess2)
+	q2, total2 := map[string]interface{}{}, 0
+	temp2 := map[string]map[string]interface{}{} //线上版
+	it2 := sess2.DB(save_mgo.DbName).C("zktest_liantong_source_06").Find(&q2).Select(map[string]interface{}{
+		"bidamount": 1,
+		"s_winner":  1,
+		"buyer":     1,
+		"href":      1,
+		"toptype":   1,
+		"subtype":   1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it2.Next(&tmp); total2++ {
+		if total2%10000 == 0 {
+			log.Debug("curent index ", total2, "~", len(temp2))
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		temp2[tmpid] = tmp
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", len(temp2))
+
+	sess1 := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess1)
+	q1, total1 := map[string]interface{}{}, 0
+	temp1 := map[string]map[string]interface{}{} //标注版
+	it1 := sess1.DB(save_mgo.DbName).C("zktest_liantong_biaozhu_06").Find(&q1).Select(map[string]interface{}{
+		"bidamount": 1,
+		"s_winner":  1,
+		"buyer":     1,
+		"id":        1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it1.Next(&tmp); total1++ {
+		if total1%10000 == 0 {
+			log.Debug("curent index ", total1, "~", len(temp1))
+		}
+		tmpid := qu.ObjToString(tmp["id"])
+		temp1[tmpid] = map[string]interface{}{
+			"bidamount": qu.Float64All(tmp["bidamount"]),
+			"buyer":     qu.ObjToString(tmp["buyer"]),
+			"s_winner":  qu.ObjToString(tmp["s_winner"]),
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", len(temp1))
+
+	isAll, isErr := 0, 0
+	for k, v1 := range temp1 {
+		if isAll%1000 == 0 {
+			log.Debug("cur index ", isAll, "~", isErr)
+		}
+		bidamount := qu.Float64All(v1["bidamount"])
+		buyer := qu.ObjToString(v1["buyer"])
+		s_winner := qu.ObjToString(v1["s_winner"])
+		v2 := temp2[k] //线上
+		if v2 != nil {
+			old_bidamount := qu.Float64All(v2["bidamount"])
+			old_buyer := qu.ObjToString(v2["buyer"])
+			old_s_winner := qu.ObjToString(v2["s_winner"])
+			href := qu.ObjToString(v2["href"])
+			toptype := qu.ObjToString(v2["toptype"])
+			subtype := qu.ObjToString(v2["subtype"])
+			if bidamount != old_bidamount || buyer != old_buyer || s_winner != old_s_winner {
+				isErr++
+				reason := ""
+				if buyer != old_buyer {
+					reason = reason + "buyer,"
+				}
+				if bidamount != bidamount {
+					reason = reason + "bidamount,"
+				}
+				if s_winner != s_winner {
+					reason = reason + "s_winner,"
+				}
+				save_mgo.Save("zktest_liantong_diff", map[string]interface{}{
+					"_id":           k,
+					"old_s_winner":  old_s_winner,
+					"old_bidamount": old_bidamount,
+					"old_buyer":     old_buyer,
+					"new_s_winner":  s_winner,
+					"new_bidamount": bidamount,
+					"new_buyer":     buyer,
+					"href":          href,
+					"toptype":       toptype,
+					"subtype":       subtype,
+					"reason":        reason,
+					"jyhref":        fmt.Sprintf(Url, qu.CommonEncodeArticle("content", k)),
+				})
+			}
+		}
+		isAll++
+	}
+	log.Debug("is over ", isAll, "~", isErr)
+}
+
+func yanzheng() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	temp := map[string]string{}
+	it := sess.DB(save_mgo.DbName).C("zktest_liantong_06_id").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", len(temp))
+		}
+		tmpid := qu.ObjToString(tmp["id"])
+		if temp[tmpid] == "" {
+			temp[tmpid] = tmpid
+		} else {
+			//log.Debug("重复", tmpid)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", total)
+}
+
+// 站点筛选
+func filterSiteInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("site").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		if f_area, _ := tmp["f_area"].(string); f_area != "" && f_area != "全国" {
+			if dealWithSiteInfo(tmp) {
+				isok++
+				save_mgo.Save("123456", map[string]interface{}{
+					"site":   qu.ObjToString(tmp["site"]),
+					"f_area": qu.ObjToString(tmp["f_area"]),
+					"f_city": qu.ObjToString(tmp["f_city"]),
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", total, "~", isok)
+}
+
+// 处理站点数据
+func dealWithSiteInfo(tmp map[string]interface{}) bool {
+	site := qu.ObjToString(tmp["site"])
+	f_area := qu.ObjToString(tmp["f_area"])
+	f_city := qu.ObjToString(tmp["f_city"])
+	region := postRegionInfo(site)
+	r_area := qu.ObjToString(region["area"])
+	r_city := qu.ObjToString(region["city"])
+	if r_area != "" && r_area != "全国" {
+		if f_area != r_area || (r_city != f_city && f_city != "" && r_city != "") {
+			return true
+		}
+	}
+	data := map[string]interface{}{
+		"area": f_area,
+		"city": f_city,
+	}
+	new_data := postRegionClean(data)
+	if qu.ObjToString(new_data["area"]) != f_area || qu.ObjToString(new_data["city"]) != f_city {
+		return true
+	}
+	return false
+}
+
+// 请求地域信息
+func postRegionInfo(detail string) map[string]interface{} {
+	client := &http.Client{Timeout: 30 * time.Second}
+	data := map[string]interface{}{"detail": detail}
+	jsonStr, _ := json.Marshal(data)
+	resp, _ := client.Post("http://127.0.0.1:9996/service/region", "application/json", bytes.NewBuffer(jsonStr))
+	res_info, _ := ioutil.ReadAll(resp.Body)
+	info := map[string]interface{}{}
+	json.Unmarshal(res_info, &info)
+	return info
+}
+
+// 请求地域信息
+func postRegionClean(data map[string]interface{}) map[string]interface{} {
+	client := &http.Client{Timeout: 30 * time.Second}
+	jsonStr, _ := json.Marshal(data)
+	resp, _ := client.Post("http://127.0.0.1:9996/service/region/clean", "application/json", bytes.NewBuffer(jsonStr))
+	res_info, _ := ioutil.ReadAll(resp.Body)
+	info := map[string]interface{}{}
+	json.Unmarshal(res_info, &info)
+	return info
+}
+
+func repairTestTidb0802() {
+	datas := MysqlGlobalTool.Find("dws_f_ent_baseinfo", nil, "id", "-id", 0, 10000)
+	t := int64(1690819200)
+	for k, v := range *datas {
+		if k%100 == 0 {
+			log.Debug("cur index ", k)
+		}
+		tmpid := qu.IntAll(v["id"])
+		n_t := t - int64(k)
+		MysqlGlobalTool.Update("dws_f_ent_baseinfo", map[string]interface{}{"id": tmpid}, map[string]interface{}{
+			"latest_time": time.Unix(n_t, 0).Format(ul.TimeLayout),
+		})
+	}
+}
+
+// 导出数据...
+func export0803() {
+	arr := []string{}
+	for _, v := range arr {
+		data := save_mgo.FindById("zktest_0725_source", v)
+		save_mgo.Save("zktest_0803_source", data)
+	}
+	log.Debug("is over ...")
+}
+
+func bbbbbbbbb() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("zktest_diff_info_0731").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := save_mgo.FindById("zktest_0725_source", tmpid)
+		extracttype := qu.IntAll(data["extracttype"])
+		if extracttype != 1 {
+			isok++
+			save_mgo.UpdateById("zktest_diff_info_0731", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"extracttype": extracttype,
+				},
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", isok)
+}
+
+// 导出差异性数据...
+func exportDiffInfo0731() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total1, total2 := map[string]interface{}{}, 0, 0
+	data1, data2 := map[string]map[string]interface{}{}, map[string]map[string]interface{}{}
+	it := sess.DB(save_mgo.DbName).C("zktest_0725_extnew").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"s_winner":  1,
+		"bidamount": 1,
+		"href":      1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total1++ {
+		if total1%1000 == 0 {
+			log.Debug("curent index ", total1)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		winner := qu.ObjToString(tmp["winner"])
+		s_winner := qu.ObjToString(tmp["s_winner"])
+		bidamount := qu.Float64All(tmp["bidamount"])
+		href := qu.ObjToString(tmp["href"])
+		if s_winner == "" && winner != "" {
+			s_winner = winner
+		}
+		data1[tmpid] = map[string]interface{}{
+			"s_winner":  s_winner,
+			"bidamount": bidamount,
+			"href":      href,
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", len(data1))
+
+	it = sess.DB(save_mgo.DbName).C("zktest_0725_source").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"s_winner":    1,
+		"bidamount":   1,
+		"extracttype": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total2++ {
+		if total2%1000 == 0 {
+			log.Debug("curent index ", total2)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		winner := qu.ObjToString(tmp["winner"])
+		s_winner := qu.ObjToString(tmp["s_winner"])
+		bidamount := qu.Float64All(tmp["bidamount"])
+		extracttype := qu.IntAll(tmp["extracttype"])
+		if s_winner == "" && winner != "" {
+			s_winner = winner
+		}
+		data2[tmpid] = map[string]interface{}{
+			"s_winner":    s_winner,
+			"bidamount":   bidamount,
+			"extracttype": extracttype,
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ... ", len(data2))
+
+	for k, v := range data1 {
+		new_s_winner := qu.ObjToString(v["s_winner"])
+		new_bidamount := qu.Float64All(v["bidamount"])
+		old_s_winner := qu.ObjToString(data2[k]["s_winner"])
+		old_bidamount := qu.Float64All(data2[k]["bidamount"])
+		if old_s_winner != new_s_winner || old_bidamount != new_bidamount {
+			data := map[string]interface{}{
+				"_id":           k,
+				"extracttype":   qu.IntAll(data2[k]["extracttype"]),
+				"new_s_winner":  new_s_winner,
+				"new_bidamount": new_bidamount,
+				"old_s_winner":  old_s_winner,
+				"old_bidamount": old_bidamount,
+				"href":          qu.ObjToString(v["href"]),
+				"jyhref":        fmt.Sprintf(Url, qu.CommonEncodeArticle("content", k)),
+			}
+			save_mgo.Save("zktest_0725_diff", data)
+		}
+	}
+}
+
+func exportPurListInfo1(limit int) {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"purchasinglist": map[string]interface{}{
+			"$exists": 1,
+		},
+	}, 0
+	isok := 0
+	os.Remove("111.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("样本数据")
+	row := sheet.AddRow()
+	row.AddCell().Value = "唯一标识"
+	row.AddCell().Value = "brandname"
+	row.AddCell().Value = "item"
+	row.AddCell().Value = "itemname"
+	row.AddCell().Value = "model"
+	row.AddCell().Value = "number"
+	row.AddCell().Value = "totalprice"
+	row.AddCell().Value = "unitname"
+	row.AddCell().Value = "unitprice"
+	row.AddCell().Value = "site"
+	row.AddCell().Value = "toptype"
+	row.AddCell().Value = "subtype"
+	row.AddCell().Value = "href"
+	row.AddCell().Value = "jyhref"
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		if isok == limit {
+			break
+		}
+		purchasinglist := IsMarkInterfaceMap(tmp["purchasinglist"])
+		if len(purchasinglist) > 0 {
+			isok++
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		href := qu.ObjToString(tmp["href"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		subtype := qu.ObjToString(tmp["subtype"])
+		toptype := qu.ObjToString(tmp["toptype"])
+		site := qu.ObjToString(tmp["site"])
+		for _, v := range purchasinglist {
+			row = sheet.AddRow()
+			row.AddCell().Value = tmpid
+			row.AddCell().Value = qu.ObjToString(v["brandname"])
+			row.AddCell().Value = qu.ObjToString(v["item"])
+			row.AddCell().Value = qu.ObjToString(v["itemname"])
+			row.AddCell().Value = qu.ObjToString(v["model"])
+			if v["number"] != nil {
+				number := v["number"].(float64)
+				row.AddCell().Value = fmt.Sprintf("%f", number)
+			} else {
+				row.AddCell().Value = ""
+			}
+			if v["totalprice"] != nil {
+				totalprice := v["totalprice"].(float64)
+				row.AddCell().Value = fmt.Sprintf("%f", totalprice)
+			} else {
+				row.AddCell().Value = ""
+			}
+			row.AddCell().Value = qu.ObjToString(v["unitname"])
+			if v["unitprice"] != nil {
+				unitprice := v["unitprice"].(float64)
+				row.AddCell().Value = fmt.Sprintf("%f", unitprice)
+			} else {
+				row.AddCell().Value = ""
+			}
+			row.AddCell().Value = site
+			row.AddCell().Value = toptype
+			row.AddCell().Value = subtype
+			row.AddCell().Value = href
+			row.AddCell().Value = jyhref
+		}
+		tmp = make(map[string]interface{})
+	}
+	err := f.Save("111.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+		return
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+	log.Debug("导出结束... ", total)
+
+}
+
+func exportPurListInfo(limit int64) {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"procurementlist": map[string]interface{}{
+			"$exists": 1,
+		},
+	}, 0
+	os.Remove("111.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("样本数据")
+	row := sheet.AddRow()
+	row.AddCell().Value = "唯一标识"
+	row.AddCell().Value = "projectname"
+	row.AddCell().Value = "projectscope"
+	row.AddCell().Value = "expurasingtime"
+	row.AddCell().Value = "buyer"
+	row.AddCell().Value = "item"
+	row.AddCell().Value = "totalprice"
+	row.AddCell().Value = "href"
+	row.AddCell().Value = "jyhref"
+	row.AddCell().Value = "subtype"
+	row.AddCell().Value = "toptype"
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Limit(limit).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		procurementlist := IsMarkInterfaceMap(tmp["procurementlist"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		href := qu.ObjToString(tmp["href"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		subtype := qu.ObjToString(tmp["subtype"])
+		toptype := qu.ObjToString(tmp["toptype"])
+		for _, v := range procurementlist {
+			row = sheet.AddRow()
+			row.AddCell().Value = tmpid
+			row.AddCell().Value = qu.ObjToString(v["projectname"])
+			row.AddCell().Value = qu.ObjToString(v["projectscope"])
+			row.AddCell().Value = qu.ObjToString(v["expurasingtime"])
+			row.AddCell().Value = qu.ObjToString(v["buyer"])
+			row.AddCell().Value = qu.ObjToString(v["item"])
+			if v["totalprice"] != nil {
+				totalprice := v["totalprice"].(float64)
+				row.AddCell().Value = fmt.Sprintf("%f", totalprice)
+			} else {
+				row.AddCell().Value = ""
+			}
+			row.AddCell().Value = href
+			row.AddCell().Value = jyhref
+			row.AddCell().Value = subtype
+			row.AddCell().Value = toptype
+		}
+		tmp = make(map[string]interface{})
+	}
+	err := f.Save("111.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+		return
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+	log.Debug("导出结束... ", total)
+}
+
+// 替换抽取表数据
+func replaceExtInfo() {
+	testArr, _ := save_mgo.Find("zktest_replaceid_0727_extract", nil, nil, map[string]interface{}{
+		"_id": 1,
+	})
+	for k, v := range testArr {
+		if k%100 == 0 {
+			log.Debug("遍历...", k)
+		}
+		tmpid := BsonTOStringId(v["_id"])
+		data := ext_mgo.FindById("result_20220218", tmpid)
+		if data == nil || len(data) == 0 {
+			log.Debug("异常``", tmpid)
+		}
+	}
+	log.Debug("is over ...")
+	return
+	dataArr, _ := save_mgo.Find("zktest_replaceid_0727_extract", nil, nil, nil)
+	for k, v := range dataArr {
+		if k%100 == 0 {
+			log.Debug("遍历...", k)
+		}
+		tmpid := BsonTOStringId(v["_id"])
+		if tmpid != "" {
+			ext_mgo.DeleteById("result_20220218", tmpid)
+			ext_mgo.Save("result_20220218", v)
+		}
+	}
+	log.Debug("is over ... ")
+}
+
+// 导出判重标记
+func exportExtTag0727() {
+	dataArr, _ := save_mgo.Find("zktest_replaceid_0727_bidding", nil, nil, map[string]interface{}{
+		"_id":         1,
+		"extracttype": 1,
+		"repeat_id":   1,
+	})
+	isok := 0
+	for k, tmp := range dataArr {
+		if k%100 == 0 {
+			log.Debug("遍历:", k)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		extracttype := qu.IntAll(tmp["extracttype"])
+		repeat_id := qu.ObjToString(tmp["repeat_id"])
+		if extracttype == -1 {
+			isok++
+			save_mgo.UpdateById("zktest_replaceid_0727_extract", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"repeat":    1,
+					"repeat_id": repeat_id,
+				},
+			})
+		} else {
+			save_mgo.UpdateById("zktest_replaceid_0727_extract", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"repeat": 0,
+				},
+			})
+		}
+	}
+	log.Debug("is over ", isok)
+}
+
+func export0727() {
+	dataArr, _ := save_mgo.Find("zktest_replaceid_0727", nil, nil, nil)
+	isok1, isok2 := 0, 0
+	for k, v := range dataArr {
+		if k%100 == 0 {
+			log.Debug("遍历:", k)
+		}
+		s_id := qu.ObjToString(v["s_id"])
+		r_id := IsMarkInterfaceArr(v["r_id"])
+		infoArr := []map[string]interface{}{}
+		s_data := save_mgo.FindById("bidding", s_id)
+		if len(s_data) > 0 {
+			href := qu.ObjToString(s_data["href"])
+			if IsJpHref(href) { //竞品找到其中某一个不为竞品的数据
+				isR := false
+				for _, v1 := range r_id {
+					info := save_mgo.FindById("bidding", v1)
+					if len(info) > 0 {
+						if IsJpHref(qu.ObjToString(info["href"])) {
+							infoArr = append(infoArr, info)
+						} else { //此时采用数据替换原则-ID不变
+							if !isR {
+								isR = true
+								tmp_s_id := s_id
+								tmp_i_id := BsonTOStringId(info["_id"])
+								tmp_s_data := info
+								tmp_i_data := s_data
+								tmp_s_data["_id"] = StringTOBsonId(tmp_s_id)
+								tmp_i_data["_id"] = StringTOBsonId(tmp_i_id)
+								infoArr = append(infoArr, tmp_s_data)
+								infoArr = append(infoArr, tmp_i_data)
+							} else {
+								infoArr = append(infoArr, info)
+							}
+						}
+					}
+				}
+				if !isR {
+					infoArr = append(infoArr, s_data)
+				}
+			} else { //标讯源不变-
+				infoArr = append(infoArr, s_data)
+				for _, v1 := range r_id {
+					info := save_mgo.FindById("bidding", v1)
+					if len(info) > 0 {
+						infoArr = append(infoArr, info)
+					}
+				}
+			}
+		} else {
+			log.Debug("错误...")
+		}
+		isok1 += len(r_id) + 1
+		//数据验证
+		if len(infoArr) != len(r_id)+1 {
+			log.Debug("异常~", s_id, "~", len(infoArr))
+		} else {
+			isok2 += len(infoArr)
+			for _, v1 := range infoArr {
+				save_mgo.Save("zktest_replaceid_0727_bidding", v1)
+			}
+		}
+	}
+	log.Debug("is over ", isok1, "~", isok2)
+}
+
+// 判断~是否需要替换数据相关
+func IsJpHref(href string) bool {
+	if strings.Contains(href, "https://www.jianyu360.cn") {
+		return true
+	}
+	return false
+}
+
+// 特殊的错误数据需要重抽-选取以及替换
+func finallyReplaceErrInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"e_id": 1,
+	}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_replaceid_0726").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		s_id := qu.ObjToString(tmp["s_id"])
+		if s_id != "" {
+			dataArr, _ := ext_mgo.Find("result_replace_log", bson.M{"replace_id": s_id}, nil, nil)
+			r_id := []string{}
+			for _, v := range dataArr {
+				tmpid := BsonTOStringId(v["_id"])
+				r_id = append(r_id, tmpid)
+			}
+			save_mgo.Save("zktest_replaceid_spec_0727", map[string]interface{}{
+				"s_id": s_id,
+				"r_id": r_id,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 开始校验替换数据
+func finallyReplaceInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	pool_mgo := make(chan bool, 10)
+	wg_mgo := &sync.WaitGroup{}
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_replaceid_0726").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		pool_mgo <- true
+		wg_mgo.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-pool_mgo
+				wg_mgo.Done()
+			}()
+			dealWithReplaceInfo(tmp)
+		}(tmp)
+		tmp = make(map[string]interface{})
+	}
+	wg_mgo.Wait()
+	log.Debug("is over ", total)
+}
+
+// 处理-替换数据-计算
+func dealWithReplaceInfo(tmp map[string]interface{}) {
+	BidArr := []map[string]interface{}{}
+	ExtArr := []map[string]interface{}{}
+	t_id := BsonTOStringId(tmp["_id"])
+	s_id := qu.ObjToString(tmp["s_id"])
+	r_id := IsMarkInterfaceArr(tmp["r_id"])
+	if s_id == "" || len(r_id) == 0 {
+		log.Debug("原错误:", s_id)
+		save_mgo.UpdateById("zktest_replaceid_0726", t_id, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"e_id": 1,
+			},
+		})
+		return
+	}
+	ids := append(r_id, s_id)
+	for _, v := range ids {
+		ext_data := ext_mgo.FindById("result_20220218", v)
+		if len(ext_data) > 0 {
+			ext_site := qu.ObjToString(ext_data["site"])
+			ext_href := qu.ObjToString(ext_data["href"])
+			for _, v1 := range ids {
+				if v == v1 {
+					continue
+				}
+				bid_data := save_mgo.FindById("bidding", v1)
+				if len(bid_data) > 0 {
+					bid_site := qu.ObjToString(bid_data["site"])
+					bid_href := qu.ObjToString(bid_data["href"])
+					if ext_site == bid_site && ext_href == bid_href {
+						//找到正确的bidding数据
+						bid_data["_id"] = StringTOBsonId(v)
+						BidArr = append(BidArr, bid_data)
+						ExtArr = append(ExtArr, ext_data)
+						break
+					}
+				}
+			}
+		}
+	}
+	if len(BidArr) != len(ids) || len(BidArr) != len(ExtArr) {
+		log.Debug("特错误:", s_id)
+		save_mgo.UpdateById("zktest_replaceid_0726", t_id, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"e_id": 1,
+			},
+		})
+		return
+	}
+	for k, v := range BidArr {
+		save_mgo.Save("zktest_replaceid_0726_bidding", v)
+		save_mgo.Save("zktest_replaceid_0726_extract", ExtArr[k])
+	}
+}
+
+// 数据导出--历史数据修复问题
+func export0726() {
+	sess := ext_mgo.GetMgoConn()
+	defer ext_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"is_history": 1,
+	}, 0
+	temp := map[string][]string{}
+	indexArr := []string{}
+	it := sess.DB(ext_mgo.DbName).C("result_replace_log").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", len(temp), "~", len(indexArr))
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		replace_id := qu.ObjToString(tmp["replace_id"])
+		arr := temp[replace_id]
+		if arr == nil {
+			arr = []string{}
+			indexArr = append(indexArr, replace_id)
+		}
+		arr = append(arr, tmpid)
+		temp[replace_id] = arr
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", len(temp), "~", len(indexArr))
+
+	for k, v := range indexArr {
+		if k%10000 == 0 {
+			log.Debug("遍历...", k)
+		}
+		save_mgo.Save("zktest_replaceid_0726", map[string]interface{}{
+			"s_id": v,
+			"r_id": temp[v],
+		})
+	}
+	log.Debug("结束...")
+}
+
+// 导出抽取数据
+func export0725() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("64bd4e800000000000000000"),
+			"$lt":  StringTOBsonId("64bea0000000000000000000"),
+		},
+	}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		subtype := qu.ObjToString(tmp["subtype"])
+		if subtype == "中标" || subtype == "成交" || subtype == "结果" {
+			data := ext_mgo.FindById("result_20220218", tmpid)
+			if data != nil && len(data) > 0 {
+				isok++
+				save_mgo.Save("zktest_0725_source", tmp)
+				save_mgo.Save("zktest_0725_extold", data)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+func export0613() {
+	dataArr, _ := ext_mgo.Find("zktest_marked_info", nil, nil, bson.M{"_id": 1})
+	temp := map[string]string{}
+	for _, v := range dataArr {
+		tmpid := BsonTOStringId(v["_id"])
+		temp[tmpid] = tmpid
+	}
+	sess := ext_mgo.GetMgoConn()
+	defer ext_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(ext_mgo.DbName).C("zktest_marked_source").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		if temp[tmpid] == "" {
+			isok++
+			ext_mgo.DeleteById("zktest_marked_source", tmpid)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+func export0612() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("marked").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := ext_mgo.FindById("result_20220219", tmpid)
+		if data != nil && len(data) > 2 {
+			ext_mgo.Save("zktest_marked_info", data)
+		} else {
+			data = ext_mgo.FindById("result_20220218", tmpid)
+			if data != nil && len(data) > 2 {
+				ext_mgo.Save("zktest_marked_info", data)
+			}
+		}
+		ext_mgo.Save("zktest_marked_source", tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+func exportErrInfo0515() {
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	//26号当天数据
+	query1 := es_elastic.NewTermQuery("site", "服务采购数字化平台")
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query1)).Size(200).Do()
+	if err != nil || cursor.Results == nil || cursor.Results.Hits == nil {
+		log.Debug("异常~", err)
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs, isok := 0, 0
+	pool_es := make(chan bool, 10)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数:", numDocs, " 符合条数:", isok)
+			}
+			numDocs++
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmp map[string]interface{}) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				save_mgo.Save("111111", map[string]interface{}{
+					"_id": StringTOBsonId(qu.ObjToString(tmp["_id"])),
+				})
+			}(tmp)
+		}
+	}
+	wg_es.Wait()
+	log.Debug("遍历完毕...", total, numDocs, isok)
+}
+
+// 清洗医疗名称
+func testCleanMedicalName() {
+	dataArr, _ := save_mgo.Find("111111", nil, bson.M{"_id": 1}, nil)
+	isok := 0
+	var reg1 *regexp.Regexp = regexp.MustCompile("[((].*[))]")
+	var reg2 *regexp.Regexp = regexp.MustCompile("^([\u4E00-\u9FA5]+)([A-Za-z]+)$")
+
+	for _, v := range dataArr {
+		tmpid := BsonTOStringId(v["_id"])
+		new_name := qu.ObjToString(v["name"])
+		new_name = strings.ReplaceAll(new_name, " ", "")
+		if reg1.MatchString(new_name) {
+			new_name = reg1.ReplaceAllString(new_name, "")
+		}
+		if reg2.MatchString(new_name) {
+			new_name = reg2.ReplaceAllString(new_name, "${1}")
+		}
+		if utf8.RuneCountInString(new_name) > 10 {
+			new_name = ""
+		}
+		save_mgo.UpdateById("111111", tmpid, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"new_name": new_name,
+			},
+		})
+		isok++
+	}
+	log.Debug("is over ", isok)
+}
+
+func cleanName(s string) string {
+	news := ""
+	isTrue := false
+	for _, c := range s {
+		if unicode.Is(unicode.Han, c) || unicode.IsLetter(c) {
+			isTrue = true
+		}
+		if isTrue {
+			news += string(c)
+		}
+	}
+	return news
+}
+
+// 迭代性能测试
+func testMongoLevel1() {
+	tmpid, total := "403655e927198cc9c10fcc49", 0
+	for {
+		q := bson.M{"_id": bson.M{"$gt": StringTOBsonId(tmpid)}}
+		dataArr, _ := save_mgo.FindLimit("bidding", q, bson.M{"_id": 1}, nil, 5000)
+		total += len(dataArr)
+		if total > 3000000 {
+			break
+		}
+		if len(dataArr) == 0 {
+			break
+		}
+		tmpid = BsonTOStringId(dataArr[len(dataArr)-1]["_id"])
+	}
+	log.Debug("is page over ", total)
+}
+func testMongoLevel2() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := bson.M{"_id": bson.M{"$gt": StringTOBsonId("403655e927198cc9c10fcc49")}}, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total > 3000000 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is iter over ", total)
+}
+
+// 接口调用大模型数据
+func callChatGlmApi(from string) {
+	prompt := ""
+	if from == "buyer" {
+		prompt = "你是一名数据标注员,请抽取文中的采购单位"
+	} else if from == "area" {
+		prompt = "你是一名数据识别员,请识别文中的项目地区"
+	} else if from == "winner" {
+		prompt = "你是一名数据标注员,请抽取文中的中标单位"
+	} else if from == "bidamount" {
+		prompt = "你是一名数据识别员,请抽取文中的中标金额"
+	} else {
+		log.Debug("参数参数有误~~~")
+		return
+	}
+
+	dataArr, _ := save_mgo.Find("zktest_chatglm_"+from, nil, nil, map[string]interface{}{"detail": 1, "href": 1})
+	for k, v := range dataArr {
+		if k%10 == 0 {
+			log.Debug("cur index ", k)
+		}
+		detail := qu.ObjToString(v["detail"])
+		new_prompt := detail + "\n" + prompt
+		body := map[string]interface{}{"identity": "剑鱼chat", "prompt": new_prompt}
+		data := postChatGlm("http://192.168.3.109:12001",
+			body, "application/json")
+		response := ""
+		if qu.IntAll(data["status"]) == 200 {
+			response = qu.ObjToString(data["response"])
+		} else {
+			response = "请求异常"
+		}
+		tmpid := qu.ObjToString(v["_id"])
+		save_mgo.Save("111111_"+from, map[string]interface{}{
+			"_id":      tmpid,
+			"jyhref":   fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid)),
+			"href":     qu.ObjToString(v["href"]),
+			"detail":   detail,
+			"response": response,
+		})
+	}
+	log.Debug("is over ~~~")
+}
+
+func postChatGlm(url string, data interface{}, contentType string) map[string]interface{} {
+	task <- struct{}{}
+	defer func() {
+		<-task
+	}()
+	client := &http.Client{Timeout: 10 * time.Second}
+	jsonStr, _ := json.Marshal(data)
+	resp, err := client.Post(url, contentType, bytes.NewBuffer(jsonStr))
+	if err != nil {
+		log.Debug("请求错误~", err)
+		return map[string]interface{}{}
+	}
+	result, _ := ioutil.ReadAll(resp.Body)
+	dict := make(map[string]interface{})
+	json.Unmarshal(result, &dict)
+	//fmt.Println("post...start")
+	return dict
+}
+
+// 导出无中标单位的数据
+func export0427wininfo() {
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	//26号当天数据
+	query1 := es_elastic.NewRangeQuery("publishtime").Gte(1682438400).Lt(1682524800)
+	query2 := es_elastic.NewMissingFilter("winner")
+	query3 := es_elastic.NewMissingFilter("bidamount")
+
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query1, query2, query3)).Size(200).Do()
+	if err != nil || cursor.Results == nil || cursor.Results.Hits == nil {
+		log.Debug("异常~", err)
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs, isok := 0, 0
+	//多线程 - 处理数据
+	temp := map[string]int{}
+	pool_es := make(chan bool, 1)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数:", numDocs, " 符合条数:", isok)
+			}
+			numDocs++
+			if isok >= 100 {
+				break
+			}
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmp map[string]interface{}) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				site := qu.ObjToString(tmp["site"])
+				subtype := qu.ObjToString(tmp["subtype"])
+				if subtype == "中标" || subtype == "成交" || subtype == "合同" {
+					num := qu.IntAll(temp[site])
+					if num < 2 {
+						isok++
+						temp[site] = num + 1
+						save_mgo.Save("zktest_chatglm_wininfo", tmp)
+					}
+				}
+			}(tmp)
+		}
+	}
+	wg_es.Wait()
+	log.Debug("遍历完毕...", total, numDocs, isok)
+}
+
+// 导出-大模型验证的-疑似问题-buyer与地域
+func export0425buyer() {
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	query1 := es_elastic.NewRangeQuery("publishtime").Gte(1682265600).Lt(1682352000)
+	query2 := es_elastic.NewTermQuery("toptype", "招标")
+	query4 := es_elastic.NewMissingFilter("buyer")
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query1, query2, query4)).Size(200).Do()
+	if err != nil || cursor.Results == nil || cursor.Results.Hits == nil {
+		log.Debug("异常~", err)
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs, isok := 0, 0
+	//多线程 - 处理数据
+	temp := map[string]int{}
+	pool_es := make(chan bool, 1)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数:", numDocs, " 符合条数:", isok)
+			}
+			numDocs++
+			if isok >= 100 {
+				break
+			}
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmp map[string]interface{}) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				site := qu.ObjToString(tmp["site"])
+				num := qu.IntAll(temp[site])
+				if num < 2 {
+					isok++
+					temp[site] = num + 1
+					save_mgo.Save("zktest_chatglm_buyer", tmp)
+				}
+			}(tmp)
+		}
+	}
+	wg_es.Wait()
+	log.Debug("遍历完毕...", total, numDocs, isok)
+}
+func export0425region() {
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	query1 := es_elastic.NewRangeQuery("publishtime").Gte(1682265600).Lt(1682352000)
+	query4 := es_elastic.NewTermQuery("area", "全国")
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query1, query4)).Size(200).Do()
+	if err != nil || cursor.Results == nil || cursor.Results.Hits == nil {
+		log.Debug("异常~", err)
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs, isok := 0, 0
+	//多线程 - 处理数据
+	temp := map[string]int{}
+	pool_es := make(chan bool, 1)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数:", numDocs, " 符合条数:", isok)
+			}
+			numDocs++
+			if isok >= 100 {
+				break
+			}
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmp map[string]interface{}) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				site := qu.ObjToString(tmp["site"])
+				num := qu.IntAll(temp[site])
+				if num < 2 {
+					isok++
+					temp[site] = num + 1
+					save_mgo.Save("zktest_chatglm_region", tmp)
+				}
+			}(tmp)
+		}
+	}
+	wg_es.Wait()
+	log.Debug("遍历完毕...", total, numDocs, isok)
+}
+func tongji0424() {
+	var SE = qu.SimpleEncrypt{Key: "topJYBX2019"}
+	temp := map[string]string{}
+	fileNameArr := []string{"1.xlsx", "2.xlsx", "3.xlsx"}
+	for _, filename := range fileNameArr {
+		isok := 0
+		ff, _ := xlsx.OpenFile("res/" + filename)
+		for _, sheet := range ff.Sheets {
+			for row_index, row := range sheet.Rows {
+				var str []string
+				for _, cell := range row.Cells {
+					s := cell.String()
+					s = strings.ReplaceAll(s, " ", "")
+					s = strings.ReplaceAll(s, " ", "")
+					str = append(str, s)
+				}
+				if row_index > 0 {
+					area := qu.ObjToString(str[0])
+					city := qu.ObjToString(str[1])
+					subtype := qu.ObjToString(str[2])
+					budget := qu.Float64All(str[3])
+					bidamount := qu.Float64All(str[4])
+					buyer := qu.ObjToString(str[5])
+					s_winner := qu.ObjToString(str[6])
+					encry_id := qu.ObjToString(str[7])
+					tmpid := SE.DecodeString(encry_id)
+					if temp[encry_id] == "" {
+						temp[encry_id] = encry_id
+						isok++
+						data := map[string]interface{}{
+							"_id":       StringTOBsonId(tmpid),
+							"area":      area,
+							"city":      city,
+							"subtype":   subtype,
+							"budget":    budget,
+							"bidamount": bidamount,
+							"buyer":     buyer,
+							"s_winner":  s_winner,
+							"encry_id":  encry_id,
+						}
+						if data != nil {
+							save_mgo.Save("111111", data)
+						}
+					}
+				}
+			}
+		}
+		log.Debug("is over ", isok)
+	}
+
+}
+func export0424() {
+	q := map[string]interface{}{}
+	dataArr, _ := save_mgo.Find("zktest_accuracy_new", q, nil, map[string]interface{}{
+		"_id": 1,
+	})
+	for _, v := range dataArr {
+		tmpid := BsonTOStringId(v["_id"])
+		info := save_mgo.FindById("bidding", tmpid)
+		if info != nil && len(info) > 0 {
+			data := map[string]interface{}{
+				"_id":       info["_id"],
+				"area":      qu.ObjToString(info["area"]),
+				"city":      qu.ObjToString(info["city"]),
+				"subtype":   qu.ObjToString(info["subtype"]),
+				"budget":    qu.Float64All(info["budget"]),
+				"bidamount": qu.Float64All(info["bidamount"]),
+				"buyer":     qu.ObjToString(info["buyer"]),
+				"s_winner":  qu.ObjToString(info["s_winner"]),
+			}
+			save_mgo.Save("zktest_accuracy_info", data)
+		}
+	}
+}
+func accuracy0424() {
+	q := map[string]interface{}{}
+	dataArr1, _ := save_mgo.Find("zktest_accuracy_info", q, nil, nil)
+	dataArr2, _ := save_mgo.Find("zktest_accuracy_new", q, nil, nil)
+	temp1 := map[string]map[string]interface{}{}
+	temp2 := map[string]map[string]interface{}{}
+	for _, v := range dataArr1 {
+		tmpid := BsonTOStringId(v["_id"])
+		temp1[tmpid] = v
+	}
+	for _, v := range dataArr2 {
+		tmpid := BsonTOStringId(v["_id"])
+		temp2[tmpid] = v
+	}
+	log.Debug(len(temp1), "~", len(temp2))
+	fieldArr := []string{"buyer", "s_winner", "budget", "bidamount", "area", "city"}
+	t1, t2, t3, t4, t5, t6 := 0, 0, 0, 0, 0, 0
+	c1, c2, c3, c4, c5, c6 := 0, 0, 0, 0, 0, 0
+	for tmpid, info2 := range temp2 {
+		info1 := temp1[tmpid]
+		for _, key := range fieldArr {
+			if key == "buyer" {
+				t1++
+				if qu.ObjToString(info1[key]) == qu.ObjToString(info2[key]) {
+					c1++
+				}
+			} else if key == "s_winner" {
+				t2++
+				if qu.ObjToString(info1[key]) == qu.ObjToString(info2[key]) {
+					c2++
+				}
+			} else if key == "budget" {
+				t3++
+				if qu.Float64All(info1[key]) == qu.Float64All(info2[key]) {
+					c3++
+				}
+			} else if key == "bidamount" {
+				t4++
+				if qu.Float64All(info1[key]) == qu.Float64All(info2[key]) {
+					c4++
+				}
+			} else if key == "area" {
+				t5++
+				if qu.ObjToString(info1[key]) == qu.ObjToString(info2[key]) {
+					c5++
+				}
+			} else if key == "city" {
+				t6++
+				if qu.ObjToString(info1[key]) == qu.ObjToString(info2[key]) {
+					c6++
+				}
+			} else {
+
+			}
+		}
+	}
+	log.Debug("数据数", t1, t2, t3, t4, t5, t6)
+	log.Debug("正确数", c1, c2, c3, c4, c5, c6)
+	log.Debug("正确率", accuracyRate(t1, c1), "~", accuracyRate(t2, c2), "~", accuracyRate(t3, c3), "~", accuracyRate(t4, c4), "~", accuracyRate(t5, c5), "~", accuracyRate(t6, c6))
+
+}
+
+// 统计筛选数据
+func statisticalScreeningDataInfo() {
+	collArr := []string{
+		"20230207Ldx_jsfk_qx",
+		"20230207Ldx_sxsgl_qx",
+		"20230207Ldx_xljk_qx",
+		"20230209Ldx_xyaq",
+		"20230213Ldx_zhxy_2_1",
+		"20230213Ldx_zhxy_2_2",
+		"20230223Ldx_zhjs",
+		"20230317Ldx_zhty",
+	}
+	t1, t2, t3, t4, t5, t6 := 0, 0, 0, 0, 0, 0
+	c1, c2, c3, c4, c5, c6 := 0, 0, 0, 0, 0, 0
+	for _, coll := range collArr {
+		q := map[string]interface{}{}
+		dataArr, _ := save_mgo.Find(coll, q, nil, map[string]interface{}{
+			"v_baseinfo.toptype": 1,
+			"v_taginfo":          1,
+		})
+		//t1, t2, t3, t4, t5, t6 := 0, 0, 0, 0, 0, 0
+		//c1, c2, c3, c4, c5, c6 := 0, 0, 0, 0, 0, 0
+		for _, v := range dataArr {
+			v_baseinfo := *qu.ObjToMap(v["v_baseinfo"])
+			v_taginfo := *qu.ObjToMap(v["v_taginfo"])
+			toptype := qu.ObjToString(v_baseinfo["toptype"])
+			for k1, v1 := range v_taginfo {
+				b := false
+				if qu.IntAll(v1) == 1 {
+					b = true
+				}
+				switch k1 {
+				case "buyer":
+					{
+						t1++
+						if b {
+							c1++
+						}
+					}
+				case "s_winner":
+					{
+						if toptype == "结果" {
+							t2++
+							if b {
+								c2++
+							}
+						}
+					}
+				case "budget":
+					{
+						t3++
+						if b {
+							c3++
+						}
+					}
+				case "bidamount":
+					{
+						if toptype == "结果" {
+							t4++
+							if b {
+								c4++
+							}
+						}
+					}
+				case "area":
+					{
+						t5++
+						if b {
+							c5++
+						}
+					}
+				case "city":
+					{
+						t6++
+						if b {
+							c6++
+						}
+					}
+				default:
+
+				}
+			}
+		}
+		log.Debug("当前表~", coll, "~完毕~")
+	}
+
+	log.Debug("is over ~~~~~")
+	log.Debug("数据数", t1, t2, t3, t4, t5, t6)
+	log.Debug("正确数", c1, c2, c3, c4, c5, c6)
+	log.Debug("正确率", accuracyRate(t1, c1), "~", accuracyRate(t2, c2), "~", accuracyRate(t3, c3), "~", accuracyRate(t4, c4), "~", accuracyRate(t5, c5), "~", accuracyRate(t6, c6))
+}
+
+func accuracyRate(n2 int, n1 int) string {
+	str := fmt.Sprintf("%.2f", float64(n1)/float64(n2))
+	return str
+}
+
+// 筛选异常数据
+func filterTheAbnormalInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("zzzzzzkkk_rg_info_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		subtype := qu.ObjToString(tmp["subtype"])
+		s_winner := qu.ObjToString(tmp["s_winner"])
+		bidamount := qu.Float64All(tmp["bidamount"])
+		if subtype == "中标" || subtype == "成交" || subtype == "合同" {
+			if s_winner == "" && bidamount == float64(0) {
+				isok++
+				if tmp["package"] != nil {
+					log.Debug(tmp["_id"])
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 解析数据
+func exportErrInfo0328() {
+	dataArr, _ := save_mgo.Find("zzzzzzkkk_rg_info_err", nil, nil, nil)
+	for _, v := range dataArr {
+		tmpid := BsonTOStringId(v["_id"])
+		info := save_mgo.FindById("zzzzzzkkk_rg_source", tmpid)
+		save_mgo.Save("zzzzzzkkk_rg_info", info)
+	}
+}
+
+// 修复数据
+func repair0317() {
+	//20230314Zdx_xx_new
+	dataArr, _ := save_mgo.Find("20230314Zdx_xx_new", nil, nil, nil)
+	isok := 0
+	for _, v := range dataArr {
+		id := BsonTOStringId(v["_id"])
+		info := save_mgo.FindOne("20230314Zdx_xx", map[string]interface{}{
+			"id": id,
+		})
+		if len(info) > 0 && info != nil {
+			isok++
+			tmpid := BsonTOStringId(info["_id"])
+			update := v
+			delete(update, "_id")
+			save_mgo.UpdateById("20230314Zdx_xx", tmpid, map[string]interface{}{
+				"$set": update,
+			})
+		}
+	}
+	log.Debug("is over ", isok)
+}
+
+// 导出标注分析错误数据
+func exportErrBiaoZhuDataFenXi() {
+
+	dataArr, _ := save_mgo.Find("zzzzzzkkk_bz_info_new", nil, nil, map[string]interface{}{
+		"s_winner":    1,
+		"bidamount":   1,
+		"href":        1,
+		"jytest_href": 1,
+	})
+
+	for _, v := range dataArr {
+		info := v
+		tmpid := BsonTOStringId(v["_id"])
+		data := save_mgo.FindById("zzzzzzkkk_bz", tmpid)
+		if v_baseinfo, ok := data["v_baseinfo"].(map[string]interface{}); ok {
+			for kk, vv := range v_baseinfo {
+				new_key := "right_" + kk
+				info[new_key] = vv
+			}
+		}
+		save_mgo.Save("zzzzzzkkk_bz_info_err", info)
+	}
+
+	log.Debug("is over ~~~")
+}
+
+// 导出人工分析错误数据
+func exportErrRenGongDataFenXi() {
+	dataArr, _ := save_mgo.Find("zzzzzzkkk_rg_info_new", nil, nil, map[string]interface{}{
+		"s_winner":    1,
+		"bidamount":   1,
+		"href":        1,
+		"jytest_href": 1,
+	})
+	temp := map[string]map[string]interface{}{}
+	sourceArr, _ := save_mgo.Find("zzzzzzkkk_rg_info", nil, nil, map[string]interface{}{
+		"s_winner":  1,
+		"bidamount": 1,
+	})
+	for _, v := range sourceArr {
+		key := BsonTOStringId(v["_id"])
+		temp[key] = v
+	}
+	log.Debug("数据准备~", len(dataArr), "~", len(sourceArr))
+
+	isok := 0
+	for _, v := range dataArr {
+		key := BsonTOStringId(v["_id"])
+		biamount := qu.Float64All(v["biamount"])
+		s_winner := qu.ObjToString(v["s_winner"])
+		tmp := temp[key]
+		tmp_biamount := qu.Float64All(tmp["biamount"])
+		tmp_s_winner := qu.ObjToString(tmp["s_winner"])
+		str := ""
+		if tmp_biamount != biamount {
+			str += "金额~"
+		}
+		if tmp_s_winner != s_winner {
+			str += "单位"
+		}
+		if str != "" {
+			isok++
+			info := v
+			for kk, vv := range tmp {
+				if kk == "_id" {
+					continue
+				}
+				new_key := "right_" + kk
+				info[new_key] = vv
+			}
+			save_mgo.Save("zzzzzzkkk_rg_info_err", info)
+		}
+	}
+	//是的是的是的
+	log.Debug("最终~", isok)
+}
+
+// 验证数据
+func verifyCutWordsInfo() {
+	//总部泰康研修院南大堂人造大理石地面维修更换项目
+	GSE.LoadDict()
+	var reg *regexp.Regexp = regexp.MustCompile("[ \\s].*")
+	f, err := os.Open("res/pcd.txt")
+	if err != nil {
+
+	}
+	defer f.Close()
+	rd := bufio.NewReader(f)
+	total := 0
+	arr := []string{}
+	for {
+		total++
+		line, err := rd.ReadString('\n') //以'\n'为结束符读入一行
+		if line != "" {
+			str := reg.ReplaceAllString(line, "")
+			arr = append(arr, str)
+		}
+		if err != nil || io.EOF == err {
+			break
+		}
+	}
+	log.Debug("总计", total, "行", "~", len(arr))
+
+	isok := 0
+	for _, v := range arr {
+		s := GSE.Cut(v)
+		if len(s) > 1 {
+			log.Debug(v)
+			isok++
+		}
+	}
+	log.Debug("is over ", isok)
+}
+
+// 导出数据bidding
+func exportData0213() {
+
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lt": StringTOBsonId("63e90d000000000000000000"),
+		},
+	}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		toptype := qu.ObjToString(tmp["toptype"])
+		area := qu.ObjToString(tmp["area"])
+		extracttype := qu.IntAll(tmp["extracttype"])
+		if toptype == "招标" && area == "河南" && extracttype == 1 {
+			isok++
+			save_mgo.Save("zktest_henan_0213", tmp)
+		}
+		if isok >= 150000 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 修复标讯异常地域信息
+func repairBeaconMessageRegion() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok, isok1, isok2 := 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_warning_regions_info_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok, "~", isok1, "~", isok2)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		update := tmp
+		delete(update, "_id")
+		if len(update) > 0 {
+			isok++
+			data_1 := save_mgo.FindById("result_20220218", tmpid)
+			if data_1 != nil && len(data_1) > 0 { //存在
+				isok1++
+				save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+					"$set": update,
+				})
+			}
+			data_2 := save_mgo.FindById("result_20220219", tmpid)
+			if data_2 != nil && len(data_2) > 0 { //存在
+				isok2++
+				save_mgo.UpdateById("result_20220219", tmpid, map[string]interface{}{
+					"$set": update,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok, "~", isok1, "~", isok2)
+}
+
+// 修复标讯采购意向信息
+func repairBeaconMessageCgyx() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok, isok1, isok2 := 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_cgyx_info_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, "~", isok, "~", isok1, "~", isok2)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		update := tmp
+		delete(update, "_id")
+		if len(update) > 0 {
+			isok++
+			data_1 := save_mgo.FindById("result_20220218", tmpid)
+			if data_1 != nil && len(data_1) > 0 { //存在
+				isok1++
+				save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+					"$set": update,
+				})
+			}
+			data_2 := save_mgo.FindById("result_20220219", tmpid)
+			if data_2 != nil && len(data_2) > 0 { //存在
+				isok2++
+				save_mgo.UpdateById("result_20220219", tmpid, map[string]interface{}{
+					"$set": update,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok, "~", isok1, "~", isok2)
+}
+
+func exportSourceCgyxData() {
+	dataArr, _ := save_mgo.Find("zktest_warning_regions", nil, nil, nil)
+	log.Debug("查询数量~", len(dataArr))
+	pool := make(chan bool, 4)
+	wg := &sync.WaitGroup{}
+	for k, v := range dataArr {
+		if k%10000 == 0 {
+			log.Debug("cur index ", k)
+		}
+		tmpid := qu.ObjToString(v["id"])
+		pool <- true
+		wg.Add(1)
+		go func(tmpid string) {
+			defer func() {
+				<-pool
+				wg.Done()
+			}()
+			data := save_mgo.FindById("bidding", tmpid)
+			if data != nil && len(data) > 2 {
+				save_mgo.Save("zktest_warning_regions_info", data)
+			} else {
+				data = save_mgo.FindById("bidding_back", tmpid)
+				if data != nil && len(data) > 2 {
+					save_mgo.Save("zktest_warning_regions_info", data)
+				} else {
+					log.Debug("未查询到~", tmpid)
+				}
+			}
+		}(tmpid)
+	}
+	log.Debug("is over ", len(dataArr))
+}
+
+// 导出全量~采购意向数据
+func exportAllDataYXT() {
+	//elastic.InitElasticSize("http://172.17.4.184:19800", 10)
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	log.Debug("开始...遍历索引...")
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	query := es_elastic.NewTermQuery("site", "医信通")
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query)).
+		Size(200).Do()
+	if err != nil {
+		log.Debug("cursor", err)
+	}
+	if cursor.Results == nil {
+		log.Debug("results != nil; got nil")
+	}
+	if cursor.Results.Hits == nil {
+		log.Debug("expected results.Hits != nil; got nil")
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs := 0 //多线程 - 处理数据
+	pool_es := make(chan bool, 3)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			tmpid := qu.ObjToString(tmp["_id"])
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数~", numDocs, "~", tmpid)
+			}
+			numDocs++
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmpid string) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				save_mgo.Save("zktest_yixintong_id", map[string]interface{}{
+					"id": tmpid,
+				})
+			}(tmpid)
+		}
+	}
+	wg_es.Wait()
+	log.Debug("遍历完毕...", total, numDocs)
+}
+
+func exportInfo0209CGYX1() {
+	dataArr, _ := save_mgo.Find("zktest_cgyx_test", nil, nil, nil)
+	isok := 0
+	for _, tmp := range dataArr {
+		detail := qu.ObjToString(tmp["detail"])
+		if strings.Contains(detail, "采购金额") {
+			isok++
+			save_mgo.Save("zktest_cgyx_amount", tmp)
+		}
+	}
+	log.Debug("is over ", len(dataArr), "~", isok)
+}
+
+// 导出数据采购意向相关
+func exportInfo0209CGYX() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lt": StringTOBsonId("63e275800000000000000000"),
+		},
+	}, 0
+	temp, isok := map[string]int{}, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", isok, "~", len(temp))
+		}
+		toptype := qu.ObjToString(tmp["toptype"])
+		site := qu.ObjToString(tmp["site"])
+		detail := qu.ObjToString(tmp["detail"])
+		if toptype == "采购意向" {
+			num := qu.IntAll(temp[site])
+			if num < 5 {
+				if strings.Contains(detail, "采购时间") {
+					temp[site] = num + 1
+					isok++
+					save_mgo.Save("zktest_cgyx_test", tmp)
+				}
+			}
+		}
+		if isok > 150 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("标的物分类~~ ", total, "~", isok, "~", len(temp))
+
+}
+
+func exportPurClassCodePath() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("code_purchasing").Find(&q).Sort("_id").Iter()
+	//记录当前代码
+	tmp_code := ""
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		level := qu.IntAll(tmp["level"])
+		name := qu.ObjToString(tmp["name"])
+		code := qu.ObjToString(tmp["code"])
+		pcode := qu.ObjToString(tmp["pcode"])
+		path := ""
+		if level == 1 || level == 2 {
+			tmp_code = ""
+			path = name
+			info := map[string]interface{}{}
+			info["name"] = name
+			info["code"] = code
+			info["pcode"] = pcode
+			info["level"] = level
+			info["path"] = path
+			save_mgo.Save("code_purchasing_new", info)
+		} else {
+			if tmp_code != code {
+				tmp_code = code
+				arr, _ := save_mgo.Find("code_purchasing", map[string]interface{}{
+					"code": code,
+				}, map[string]interface{}{
+					"_id": 1,
+				}, nil)
+				pathArr := []string{}
+				for _, v := range arr {
+					pathArr = append(pathArr, qu.ObjToString(v["name"]))
+				}
+				path = strings.Join(pathArr, "~")
+
+				info := map[string]interface{}{}
+				info["name"] = name
+				info["code"] = code
+				info["pcode"] = pcode
+				info["level"] = level
+				info["path"] = path
+				save_mgo.Save("code_purchasing_new", info)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("标的物分类~~ ", total)
+}
+
+func exportPurClassCode() {
+	ff, _ := xlsx.OpenFile("1.xlsx")
+	isok := 0
+	for _, sheet := range ff.Sheets {
+		for _, row := range sheet.Rows {
+			var str []string
+			for _, cell := range row.Cells {
+				s := cell.String()
+				s = strings.ReplaceAll(s, " ", "")
+				s = strings.ReplaceAll(s, " ", "")
+				str = append(str, s)
+			}
+			s_1, s_2, s_3, name := str[0], str[1], str[2], str[5]
+			info := map[string]interface{}{}
+			level := 1
+			code := ""
+			pcode := ""
+			if s_3 != "" { //三级
+				code = s_1 + s_2 + "0" + s_3
+				pcode = s_1 + s_2
+				level = 3
+			} else {
+				if s_2 != "" { //二级
+					code = s_1 + s_2
+					pcode = s_1
+					level = 2
+				} else {
+					if s_1 != "" { //一级
+						code = s_1
+						level = 1
+					} else {
+						log.Debug("异常行~~~")
+						continue
+					}
+				}
+			}
+			info["name"] = name
+			info["code"] = code
+			info["pcode"] = pcode
+			info["level"] = level
+			save_mgo.Save("code_purchasing", info)
+			isok++
+
+		}
+	}
+	log.Debug("is over ~ ", isok)
+
+}
+
+// 导致标的物信息数据~~~~
+func exportBidPurListInfo() {
+	log.Debug("导出标的物信息数据~~~")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	purInfos := map[string]map[string]interface{}{}
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"s_topscopeclass": 1,
+		"purchasinglist":  1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", len(purInfos))
+		}
+		p_list := IsMarkInterfaceMap(tmp["purchasinglist"])
+		if len(p_list) > 0 {
+			s_topscopeclass := qu.ObjToString(tmp["s_topscopeclass"])
+			classArr := []string{}
+			if s_topscopeclass != "" {
+				classArr = strings.Split(s_topscopeclass, ",")
+			}
+			for _, v := range p_list {
+				itemname := qu.ObjToString(v["itemname"])
+				if itemname == "" || utf8.RuneCountInString(itemname) > 30 {
+					continue
+				}
+				info := purInfos[itemname]
+				if info == nil { //新增
+					purInfos[itemname] = map[string]interface{}{
+						"total": 1,
+						"name":  itemname,
+						"class": s_topscopeclass,
+					}
+				} else { //补充类别
+					new_info := dealWithPurInfo(info, classArr)
+					purInfos[itemname] = new_info
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("标的物数据准备完毕~~ ", total, "~", len(purInfos))
+	log.Debug("~~~~~~")
+	log.Debug("开始保存~标的物数据")
+
+	isok := 0
+	for k, v := range purInfos {
+		if isok%10000 == 0 {
+			log.Debug("is save index ", isok, "~", k)
+		}
+		save_mgo.Save("zktest_purchasing_info", v)
+		isok++
+	}
+
+	log.Debug("is save over ", len(purInfos), "~", isok)
+}
+
+func dealWithPurInfo(info map[string]interface{}, classArr []string) map[string]interface{} {
+	new_info := map[string]interface{}{}
+	name := qu.ObjToString(info["name"])
+	total := qu.IntAll(info["total"])
+	class := qu.ObjToString(info["class"])
+	newArr := []string{}
+	if class != "" {
+		newArr = strings.Split(class, ",")
+	}
+	if len(classArr) > 0 {
+		for _, v := range classArr {
+			isExists := false
+			for _, v1 := range newArr {
+				if v1 == v {
+					isExists = true
+					break
+				}
+			}
+			if !isExists {
+				newArr = append(newArr, v)
+			}
+		}
+	}
+	new_class := ""
+	if len(newArr) > 0 {
+		new_class = strings.Join(newArr, ",")
+	}
+	new_info["name"] = name
+	new_info["total"] = total + 1
+	new_info["class"] = new_class
+	return new_info
+}
+
+func repairSiteData1230() {
+	siteId := []string{}
+	siteName := []string{}
+	log.Debug("待校验~", len(siteId), "~", len(siteName))
+	isExist, isRepair := 0, 0
+	for k, v := range siteName {
+		if k%100 == 0 {
+			log.Debug("cur index ", k, "~", isExist, "~", isRepair)
+		}
+		data := qy_mgo.FindOne("qyxy_std", map[string]interface{}{
+			"company_name": v,
+		})
+
+		if len(data) > 0 {
+			isExist++
+			company_area := qu.ObjToString(data["company_area"])
+			if company_area != "" && company_area != "全国" {
+				isRepair++
+
+				save_mgo.UpdateById("site", siteId[k], map[string]interface{}{
+					"$set": map[string]interface{}{
+						"qy_area": company_area,
+					},
+				})
+			}
+		}
+	}
+
+}
+
+// 导出地域信息~进行对比
+func exportSpecRegionInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok, infos := 0, map[string]map[string]string{}
+	it := sess.DB(save_mgo.DbName).C("zktest_regions_test").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		site := qu.ObjToString(tmp["site"])
+		subtype := qu.ObjToString(tmp["subtype"])
+		if subtype == "" {
+			subtype = "空"
+		}
+		data := infos[site]
+		if data == nil {
+			data = map[string]string{}
+			data[subtype] = subtype
+			infos[site] = data
+			isok++
+			save_mgo.Save("zktest_regions_v1", tmp)
+		} else {
+			if data[subtype] == "" && len(data) < 4 {
+				data[subtype] = subtype
+				infos[site] = data
+				isok++
+				save_mgo.Save("zktest_regions_v1", tmp)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 修复更新站点信息
+func RepairUpdateSitesInfo() {
+	ff, _ := xlsx.OpenFile("1.xlsx")
+	isok := 0
+	for _, sheet := range ff.Sheets {
+		for k, row := range sheet.Rows {
+			if k == 0 {
+				continue
+			}
+			var str []string
+			for _, cell := range row.Cells {
+				str = append(str, cell.String())
+			}
+			tmpid := str[0]
+			info := map[string]interface{}{
+				"$set": map[string]interface{}{
+					"area":     str[3],
+					"city":     str[4],
+					"district": str[5],
+				},
+			}
+			save_mgo.UpdateById("site", tmpid, info)
+			isok++
+		}
+	}
+	log.Debug("is over ~ ", isok)
+}
+
+func exportdifferenceinfo() {
+
+	newArr, _ := save_mgo.Find("zktest_regions_new", nil, nil, map[string]interface{}{
+		"area":        1,
+		"city":        1,
+		"district":    1,
+		"href":        1,
+		"jytest_href": 1,
+	})
+	oldArr, _ := save_mgo.Find("zktest_regions_old", nil, nil, map[string]interface{}{
+		"area":        1,
+		"city":        1,
+		"district":    1,
+		"href":        1,
+		"jytest_href": 1,
+	})
+
+	info := map[string]map[string]interface{}{}
+	for _, v := range oldArr {
+		tmpid := BsonTOStringId(v["_id"])
+		info[tmpid] = v
+	}
+	log.Debug("init 完毕 ", len(info))
+	total, isok := 0, 0
+	for k, v := range newArr {
+		if k%10000 == 0 {
+			log.Debug("cur index ", k, "~", total, "~", isok)
+		}
+		data := v
+		tmpid := BsonTOStringId(v["_id"])
+		area := qu.ObjToString(v["area"])
+		city := qu.ObjToString(v["city"])
+		tmp := info[tmpid]
+		if tmp == nil {
+			continue
+		}
+		total++
+		if area == qu.ObjToString(tmp["area"]) && city == qu.ObjToString(tmp["city"]) {
+
+		} else {
+			isok++
+			data["old_area"] = qu.ObjToString(tmp["area"])
+			data["old_city"] = qu.ObjToString(tmp["city"])
+			data["old_district"] = qu.ObjToString(tmp["district"])
+			data["new_area"] = qu.ObjToString(v["area"])
+			data["new_city"] = qu.ObjToString(v["city"])
+			data["new_district"] = qu.ObjToString(v["district"])
+			delete(data, "area")
+			delete(data, "city")
+			delete(data, "district")
+
+			save_mgo.Save("zktest_regions_diff", data)
+		}
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 导出~1月2日的招标信息数据
+func exportDataInfo1231() {
+	//拉取数据
+	log.Debug("拉取12月31日,全天数据......")
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("63af0b000000000000000000"),
+			"$lt":  StringTOBsonId("63b05c800000000000000000"),
+		},
+	}, 0
+	isok := 0
+	it := sess.DB(python_mgo.DbName).C("result_20220219").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"repeat": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%5000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		repeat := qu.IntAll(tmp["repeat"])
+		if repeat == 0 {
+			isok++
+			tmpid := BsonTOStringId(tmp["_id"])
+			data := save_mgo.FindById("bidding", tmpid)
+			if data != nil && len(data) > 2 {
+				save_mgo.Save("zktest_regions_test", data)
+			} else {
+				data = save_mgo.FindById("bidding_back", tmpid)
+				if data != nil && len(data) > 2 {
+					save_mgo.Save("zktest_regions_test", data)
+				} else {
+					log.Debug("未查询到~", tmpid)
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+func EsRepairInfo() {
+	elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	query := `{"query":{"filtered":{"filter":{"bool":{"must":[{"term":{"buyer":"成都东部新区管理委员会"}}]}}}},"_source":["_id","area","buyer"],"from":"0","size":"100"}`
+	es_data := *elastic.Get("bidding", "bidding", query)
+	log.Debug("当前查询结果:", len(es_data))
+	for _, v := range es_data {
+		tmpid := qu.ObjToString(v["_id"])
+		log.Debug(tmpid)
+	}
+}
+
+func updateNjInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("bidding_1101_nj_zd").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"construction_area": 1,
+		"floor_area":        1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		floor_area := qu.ObjToString(tmp["floor_area"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if floor_area != "" {
+			isok++
+			save_mgo.UpdateById("bidding_nzj", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"floor_area": floor_area,
+				},
+			})
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+
+}
+
+func loadNjInfo() (map[string]string, map[string]string) {
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	constructions := map[string]string{}
+	floors := map[string]string{}
+	it := sess.DB(python_mgo.DbName).C("bidding_nzj").Find(&q).Sort("-_id").Select(map[string]interface{}{
+		"construction_area": 1,
+		"floor_area":        1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", len(constructions), "~", len(floors))
+		}
+
+		construction_area := qu.ObjToString(tmp["construction_area"])
+		floor_area := qu.ObjToString(tmp["floor_area"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if construction_area != "" {
+			constructions[tmpid] = tmpid
+		}
+		if floor_area != "" {
+			floors[tmpid] = tmpid
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", len(constructions), "~", len(floors))
+
+	return constructions, floors
+}
+
+func exportNJ() {
+	constructions, floors := loadNjInfo()
+	log.Debug("加载完毕~", len(constructions), "~", len(floors))
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	nj_pool := make(chan bool, 10)
+	nj_wg := &sync.WaitGroup{}
+
+	jz_reg := regexp.MustCompile("(建筑面积)")
+	zd_reg := regexp.MustCompile("(占地面积)")
+
+	it := sess.DB("qfw").C("bidding_1101_nj").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, tmp["_id"])
+		}
+		nj_pool <- true
+		nj_wg.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-nj_pool
+				nj_wg.Done()
+			}()
+			contenthtml := qu.ObjToString(tmp["contenthtml"])
+			tmpid := BsonTOStringId(tmp["_id"])
+			if jz_reg.MatchString(contenthtml) {
+				if constructions[tmpid] == "" {
+					save_mgo.Save("bidding_1101_nj_jz", tmp)
+				}
+			}
+			if zd_reg.MatchString(contenthtml) {
+				if floors[tmpid] == "" {
+					save_mgo.Save("bidding_1101_nj_zd", tmp)
+				}
+			}
+		}(tmp)
+		tmp = make(map[string]interface{})
+	}
+	nj_wg.Wait()
+	log.Debug("is copy over ", total)
+
+}
+
+// 导出报名截止时间
+func exportSignendtimeInfo() {
+	//signendtime
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	info, isok := map[string]int{}, 0
+	it := sess.DB(save_mgo.DbName).C("result_20220218").Find(&q).Sort("-_id").Select(map[string]interface{}{
+		"signendtime": 1,
+		"site":        1,
+		"href":        1,
+		"jytest_href": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		signendtime := qu.Int64All(tmp["signendtime"])
+		if signendtime > 0 {
+			site := qu.ObjToString(tmp["site"])
+			if qu.IntAll(info[site]) < 3 && isok < 500 {
+				info[site] = qu.IntAll(info[site]) + 1
+				isok++
+				delete(tmp, "signendtime")
+				tmp["signendtime"] = time.Unix(signendtime, 0).Format(timeLayout)
+				save_mgo.Save("zzzzzz", tmp)
+			}
+			if isok > 120 {
+				break
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is ext over ", total)
+
+}
+
+// 拉取抽取数据~城市空
+func exportNullRegionData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	info1, info2 := map[string]int{}, map[string]int{}
+	it := sess.DB(save_mgo.DbName).C("result_20220218").Find(&q).Sort("-_id").Select(map[string]interface{}{
+		"title":       1,
+		"area":        1,
+		"city":        1,
+		"district":    1,
+		"site":        1,
+		"spidercode":  1,
+		"href":        1,
+		"jytest_href": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", len(info1), "~", len(info2))
+		}
+		area := qu.ObjToString(tmp["area"])
+		site := qu.ObjToString(tmp["site"])
+		if area == "全国" {
+			if qu.IntAll(info1[site]) < 1 && len(info1) < 250 {
+				info1[site] = qu.IntAll(info1[site]) + 1
+				save_mgo.Save("zktest_region_data", tmp)
+			}
+		} else {
+			if qu.IntAll(info2[site]) < 1 && len(info2) < 250 {
+				info2[site] = qu.IntAll(info2[site]) + 1
+				save_mgo.Save("zktest_region_data", tmp)
+			}
+		}
+		if len(info1)+len(info2) >= 500 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+func tongjiNiJianData() {
+	//采集~抽取统计
+	keyArr := []string{
+		"approvecode",
+		"total_investment",
+		"funds",
+		"owner",
+		"projectaddr",
+		"projectperiod",
+		"project_scale",
+		"project_startdate",
+		"project_completedate",
+		"construction_area",
+		"floor_area",
+		"project_person",
+		"project_phone",
+		"approvenumber",
+		"projecttype",
+		"approvestatus",
+	}
+	ext_counts := make(map[string]int, 0)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_nijian_1017").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		for _, v := range keyArr {
+			if v == "construction_area" || v == "floor_area" {
+				info := *qu.ObjToMap(tmp["project_scale_info"])
+				if qu.ObjToString(info[v]) != "" {
+					ext_counts[v] = qu.IntAll(ext_counts[v]) + 1
+				}
+			} else {
+				if tmp[v] != nil {
+					ext_counts[v] = qu.IntAll(ext_counts[v]) + 1
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is ext over ", total)
+	for _, v := range keyArr {
+		time.Sleep(time.Second * 1)
+		fmt.Println(ext_counts[v])
+	}
+
+	//return
+	data_counts := make(map[string]int, 0)
+	q, total = map[string]interface{}{}, 0
+	it = sess.DB(save_mgo.DbName).C("zktest_nijian_1017_new_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		for _, v := range keyArr {
+			if tmp[v] != nil {
+				data_counts[v] = qu.IntAll(data_counts[v]) + 1
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is data over ", total)
+	for _, v := range keyArr {
+		time.Sleep(time.Second * 1)
+		fmt.Println(data_counts[v])
+	}
+
+	return
+}
+
+// 拉取拟建数据~
+func exportNiJianData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("6342f0000000000000000000"),
+			"$lt":  StringTOBsonId("634836000000000000000000"),
+		},
+	}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%5000 == 0 {
+			log.Debug("curent index ", total, "~", isok)
+		}
+		subtype := qu.ObjToString(tmp["subtype"])
+		if subtype == "拟建" {
+			isok++
+			save_mgo.Save("zktest_nijian_1017", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 拉取一批数据~拟建类型~每种站点5条 200个站点即可
+func exportNiJianUnSiteData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lt": StringTOBsonId("6342f0000000000000000000"),
+		},
+	}, 0
+	dicts := map[string]int{}
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%5000 == 0 {
+			log.Debug("curent index ", total, "~", len(dicts), "~", isok)
+		}
+		subtype := qu.ObjToString(tmp["subtype"])
+		site := qu.ObjToString(tmp["site"])
+		if subtype == "拟建" && qu.IntAll(dicts[site]) < 5 {
+			dicts[site] = qu.IntAll(dicts[site]) + 1
+			isok++
+			save_mgo.Save("zktest_nijian_data", tmp)
+		}
+		if isok >= 300 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", len(dicts), "~", isok)
+}
+
+// 筛选不同重复数据
+func filterDiffRepeatData(coll_1 string, coll_2 string) {
+	dataArr_1, _ := save_mgo.Find(coll_1, map[string]interface{}{
+		"repeat": 1,
+	}, nil, map[string]interface{}{
+		"repeat_id": 1,
+	})
+	dataArr_2, _ := save_mgo.Find(coll_2, map[string]interface{}{
+		"repeat": 1,
+	}, nil, map[string]interface{}{
+		"repeat_id": 1,
+	})
+	dict := map[string]string{}
+	for _, v := range dataArr_1 {
+		tmpid := BsonTOStringId(v["_id"])
+		repeat_id := qu.ObjToString(v["repeat_id"])
+		dict[tmpid] = repeat_id
+	}
+
+	log.Debug("准备数据~", len(dict))
+	is_err := 0
+	for _, v := range dataArr_2 {
+		tmpid := BsonTOStringId(v["_id"])
+		repeat_id := qu.ObjToString(v["repeat_id"])
+		if dict[tmpid] != "" && dict[tmpid] == repeat_id {
+
+		} else {
+			is_err++
+			data_1 := save_mgo.FindById("result_20220219", tmpid)
+			data_2 := save_mgo.FindById("result_20220219", repeat_id)
+			reason_data := save_mgo.FindById(coll_2, tmpid)
+			save_mgo.Save("zzzzz_chayi_data", map[string]interface{}{
+				"id_1":   tmpid,
+				"id_2":   repeat_id,
+				"href_1": qu.ObjToString(data_1["href"]),
+				"href_2": qu.ObjToString(data_2["href"]),
+				"reason": reason_data["repeat_reason"],
+			})
+		}
+	}
+	log.Debug("最终差异数据~", is_err)
+}
+
+// 计算异常数据~统计
+func calculateWarningData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("extract_budget_data_new").Find(&q).Select(map[string]interface{}{
+		"budget": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		budget := qu.Float64All(tmp["budget"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := save_mgo.FindById("extract_budget_data", tmpid)
+		old_budget := qu.Float64All(data["budget"])
+		if budget != old_budget {
+			isok++
+			//log.Debug(fmt.Sprintf("%.2f", old_budget), "~", fmt.Sprintf("%.2f", budget), "~", tmpid)
+			save_mgo.Save("zktest_repair_1", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 构建信息
+func createWinnerDatas(winner_datas *map[string]string) {
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(python_mgo.DbName).C("winner_err").Find(&q).Select(map[string]interface{}{
+		"name": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", len(*winner_datas))
+		}
+		name := qu.ObjToString(tmp["name"])
+		if name != "" {
+			(*winner_datas)[name] = name
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, len(*winner_datas))
+
+	//total := int64(0)
+	//esclient := elastic.GetEsConn()
+	//defer elastic.DestoryEsConn(esclient)
+	//if esclient == nil {
+	//	log.Debug("连接池异常")
+	//}
+	//cursor, err := esclient.Scan("winner").Query(es_elastic.NewBoolQuery().Must()).
+	//	Size(200).Do()
+	//if err != nil {
+	//	log.Debug("cursor", err)
+	//}
+	//if cursor.Results == nil {
+	//	log.Debug("results != nil; got nil")
+	//}
+	//if cursor.Results.Hits == nil {
+	//	log.Debug("expected results.Hits != nil; got nil")
+	//}
+	//total += cursor.TotalHits()
+	//log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	//numDocs := 0
+	//isExists := 0
+	//for {
+	//	searchResult, err := cursor.Next()
+	//	if err != nil {
+	//		if err.Error() == "EOS" {
+	//			break
+	//		} else {
+	//			log.Debug("cursor searchResult", err)
+	//		}
+	//	}
+	//	for _, hit := range searchResult.Hits.Hits {
+	//		tmp := make(map[string]interface{})
+	//		err := json.Unmarshal(*hit.Source, &tmp)
+	//		if err != nil {
+	//			log.Debug("json Unmarshal error")
+	//			continue
+	//		}
+	//		if numDocs%10000 == 0 {
+	//			log.Debug("当前条数~", numDocs, "~集合数~", len(*winner_datas))
+	//		}
+	//		numDocs++
+	//		name := qu.ObjToString(tmp["name"])
+	//		if name != "" {
+	//			(*winner_datas)[name] = name
+	//		}
+	//	}
+	//}
+	//log.Debug("遍历准备数据完毕...", total, numDocs, isExists)
+}
+
+// 计算海南企业的数量
+func exportHaiNanData() {
+
+	elastic.InitElasticSize("http://172.17.4.184:19800", 10)
+	//elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	winner_datas := map[string]string{}
+	createWinnerDatas(&winner_datas)
+	log.Debug("开始...遍历索引...")
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	query := es_elastic.NewTermQuery("company_area", "海南")
+	cursor, err := esclient.Scan("qyxy").Query(es_elastic.NewBoolQuery().Must(query)).
+		Size(200).Do()
+	if err != nil {
+		log.Debug("cursor", err)
+	}
+	if cursor.Results == nil {
+		log.Debug("results != nil; got nil")
+	}
+	if cursor.Results.Hits == nil {
+		log.Debug("expected results.Hits != nil; got nil")
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs := 0
+	isExists := 0
+	//多线程 - 处理数据
+	pool_es := make(chan bool, 1)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数~", numDocs, "~存在数量~", isExists, "~Es数据~", tmp["_id"])
+			}
+			numDocs++
+			company_name := qu.ObjToString(tmp["company_name"])
+			if winner_datas[company_name] != "" {
+				isExists++
+				pool_es <- true
+				wg_es.Add(1)
+				go func(company_name string) {
+					defer func() {
+						<-pool_es
+						wg_es.Done()
+					}()
+					save_mgo.Save("zktest_hainan_data", map[string]interface{}{
+						"name": company_name,
+					})
+				}(company_name)
+			}
+		}
+	}
+	wg_es.Wait()
+
+	log.Debug("遍历完毕...", total, numDocs, isExists)
+
+}
+
+// 计算标讯信息数量
+func calculateHaiNanDataNums() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	datas := map[string]string{}
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_hainan_data").Find(&q).Select(map[string]interface{}{
+		"name": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		name := qu.ObjToString(tmp["name"])
+		if name != "" {
+			datas[name] = name
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, len(datas))
+
+	elastic.InitElasticSize("http://172.17.4.184:19800", 10)
+	//elastic.InitElasticSize("http://127.0.0.1:13002", 10)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	totl_nums := int64(0)
+	index := 0
+	//多线程 - 处理数据
+	pool_es := make(chan bool, 10)
+	wg_es := &sync.WaitGroup{}
+
+	data_ids := map[string]string{}
+
+	for name, _ := range datas {
+		if index%100 == 0 {
+			log.Debug("cur index ", index, "~", totl_nums, "~", len(data_ids))
+		}
+		index++
+		//多线程~
+		pool_es <- true
+		wg_es.Add(1)
+		go func(name string) {
+			defer func() {
+				<-pool_es
+				wg_es.Done()
+			}()
+			//query := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["成交","中标","合同"]}},{"term":{"winner":"%s"}}]}}}},"_source":["_id"]}`, name)
+			query := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["成交","中标","合同"]}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["s_winner"]}}]}}}},"_source":["_id"]}`, name)
+
+			res, _ := esclient.Search().Index("bidding").Type("bidding").Source(query).Do()
+			num := res.Hits.TotalHits
+			numLock.Lock()
+			totl_nums += num
+			numLock.Unlock()
+
+			//res := *elastic.Get("bidding", "bidding", query)
+			//for _, v := range res {
+			//	numLock.Lock()
+			//	key := qu.ObjToString(v["_id"])
+			//	data_ids[key] = key
+			//	numLock.Unlock()
+			//}
+		}(name)
+	}
+	wg_es.Wait()
+	log.Debug("最终有效企业数量~", len(datas), "标讯数量~", totl_nums, "~去重后数量~", len(data_ids))
+}
+
+// 导出~需要替换数据的所有id
+func exportReplaceDataID(gteid string, lteid string) {
+	log.Debug("开始导出~待~替换~数据~")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	collName := "result_20220218"
+	q, total, isok, isreplace := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId(gteid),
+			"$lte": StringTOBsonId(lteid),
+		},
+	}, 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C(collName).Find(&q).Select(map[string]interface{}{
+		"href":   1,
+		"repeat": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isok, "~", isreplace)
+		}
+		repeat := qu.IntAll(tmp["repeat"])
+		href := qu.ObjToString(tmp["href"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if repeat == 0 && strings.Contains(href, "https://www.jianyu360.cn") {
+			isok++
+			dataArr, _ := save_mgo.Find(collName, map[string]interface{}{"repeat_id": tmpid}, nil, map[string]interface{}{
+				"href":   1,
+				"repeat": 1,
+			})
+			for _, v := range dataArr {
+				new_repeat := qu.IntAll(v["repeat"])
+				new_href := qu.ObjToString(v["href"])
+				if new_repeat == 1 && new_href != "" && !strings.Contains(new_href, "https://www.jianyu360.cn") {
+					//有效
+					isreplace++
+					save_mgo.Save("result_replace_repair_log", map[string]interface{}{
+						"_id":        v["_id"],
+						"replace_id": tmpid,
+					})
+					break
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok, "~", isreplace)
+
+}
+
+// 替换数据~俩抽取表~bidding表
+func createReplaceData(collName string) {
+	log.Debug("开始替换~数据~")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C(collName).Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, tmp["_id"])
+		}
+		info_id := BsonTOStringId(tmp["_id"])
+		source_id := qu.ObjToString(tmp["replace_id"])
+		//查询两条抽取数据
+		is_log, ext_s_data, ext_i_data := confrimHistoryExtractData(source_id, info_id)
+		is_bid, bid_s_data, bid_i_data := confrimBiddingData(source_id, info_id)
+		if is_log && is_bid {
+			is_save := save_mgo.Save("result_replace_log", map[string]interface{}{
+				"_id":        StringTOBsonId(info_id),
+				"replace_id": source_id,
+				"is_history": 2,
+			})
+			if is_save == nil {
+				log.Debug("新增log错误~", info_id, "~", source_id)
+				tmp = make(map[string]interface{})
+				continue
+			}
+
+			repeat_reason := qu.ObjToString(ext_s_data["repeat_reason"])
+			delete(ext_s_data, "repeat_id")
+			delete(ext_s_data, "repeat_reason")
+			ext_s_data["repeat"] = 0
+
+			ext_i_data["repeat"] = 1
+			ext_i_data["repeat_id"] = source_id
+			ext_i_data["repeat_reason"] = repeat_reason
+
+			save_mgo.DeleteById("result_20220218", source_id)
+			save_mgo.Save("result_20220218", ext_s_data)
+			is_del_source := save_mgo.DeleteById("result_20220219", source_id)
+			if is_del_source > 0 {
+				save_mgo.Save("result_20220219", ext_s_data)
+			}
+			save_mgo.DeleteById("result_20220218", info_id)
+			save_mgo.Save("result_20220218", ext_i_data)
+			is_del_info := save_mgo.DeleteById("result_20220219", info_id)
+			if is_del_info > 0 {
+				save_mgo.Save("result_20220219", ext_i_data)
+			}
+
+			python_mgo.DeleteById("bidding", source_id)
+			python_mgo.Save("bidding", bid_s_data)
+			python_mgo.DeleteById("bidding", info_id)
+			python_mgo.Save("bidding", bid_i_data)
+		} else {
+			log.Debug("替换~相关表~未查询到数据~", source_id, "~", info_id)
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 替换数据~从
+func createReplaceDataFromArr() {
+	arr := []string{}
+	for _, v := range arr {
+		tmp := save_mgo.FindById("result_replace_repair_log", v)
+		info_id := BsonTOStringId(tmp["_id"])
+		source_id := qu.ObjToString(tmp["replace_id"])
+		if info_id != "" && source_id != "" { //能查到数据~更新一下
+			save_mgo.UpdateById("result_replace_log", info_id, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"replace_id": source_id,
+					"is_history": 2,
+				},
+			})
+		} else {
+			log.Debug("关联id~异常~")
+		}
+	}
+
+}
+
+// 查询历史抽取表数据
+func confrimHistoryExtractData(source_id string, info_id string) (bool, map[string]interface{}, map[string]interface{}) {
+	source_data := map[string]interface{}{}
+	info_data := map[string]interface{}{}
+	isvalid := false
+	source_data = save_mgo.FindById("result_20220218", source_id)
+	info_data = save_mgo.FindById("result_20220218", info_id)
+	if len(source_data) > 2 && len(info_data) > 2 {
+		isvalid = true
+		ts_id := source_data["_id"]
+		ti_id := info_data["_id"]
+		source_data["_id"] = ti_id
+		info_data["_id"] = ts_id
+	}
+	return isvalid, info_data, source_data
+}
+
+// 查询bidding表数据
+func confrimBiddingData(source_id string, info_id string) (bool, map[string]interface{}, map[string]interface{}) {
+	source_data := map[string]interface{}{}
+	info_data := map[string]interface{}{}
+	isvalid := false
+	source_data = python_mgo.FindById("bidding", source_id)
+	info_data = python_mgo.FindById("bidding", info_id)
+	if len(source_data) > 2 && len(info_data) > 2 {
+		isvalid = true
+		ts_id := source_data["_id"]
+		ti_id := info_data["_id"]
+		source_data["_id"] = ti_id
+		info_data["_id"] = ts_id
+	}
+	return isvalid, info_data, source_data
+}
+
+// 更新剑鱼链接
+func updateJyhref() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_exists_addr").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		jytest_href := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		save_mgo.UpdateById("zktest_exists_addr", tmpid, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"jytest_href": jytest_href,
+			},
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total)
+}
+
+// bidding数据 导出空城市 site 区分数量
+func dealWithAreaCityData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"comeintime": map[string]interface{}{
+			"$gte": 1654012800,
+			"$lt":  1655568000,
+		},
+	}, 0
+	dict_1 := map[string]int{}
+	dict_2 := map[string]int{}
+	dict_3 := map[string]int{}
+	dict_4 := map[string]int{}
+	isok1, isok2, isok3, isok4 := 0, 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok1, isok2, isok3, isok4)
+		}
+		if isok1 == 500 && isok2 == 500 && isok3 == 500 && isok4 == 500 {
+			break
+		}
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		detail := qu.ObjToString(tmp["detail"])
+		site := qu.ObjToString(tmp["site"])
+		if strings.Contains(detail, "地址") {
+			if city == "" {
+				if area != "全国" {
+					if qu.IntAll(dict_1[site]) < 3 && isok1 < 500 {
+						dict_1[site] = qu.IntAll(dict_1[site]) + 1
+						isok1++
+						save_mgo.Save("zktest_exists_addr", tmp)
+					}
+				} else {
+					if qu.IntAll(dict_2[site]) < 3 && isok2 < 500 {
+						dict_2[site] = qu.IntAll(dict_2[site]) + 1
+						isok2++
+						save_mgo.Save("zktest_exists_addr", tmp)
+					}
+				}
+			}
+		} else {
+			if city == "" {
+				if area != "全国" {
+					if qu.IntAll(dict_3[site]) < 3 && isok3 < 500 {
+						dict_3[site] = qu.IntAll(dict_3[site]) + 1
+						isok3++
+						save_mgo.Save("zktest_unexists_addr", tmp)
+					}
+				} else {
+					if qu.IntAll(dict_4[site]) < 3 && isok4 < 500 {
+						dict_4[site] = qu.IntAll(dict_4[site]) + 1
+						isok4++
+						save_mgo.Save("zktest_unexists_addr", tmp)
+					}
+				}
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok1, isok2, isok3, isok4)
+}
+
+// 大金额数据
+func dealWithMuchMoneyData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("22222").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		save_mgo.Save("zkzkzk", map[string]interface{}{
+			"_id": StringTOBsonId(qu.ObjToString(tmp["_id"])),
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total)
+}
+
+// 导出错误中标单位数据
+func exportWinnerErrData() {
+	elastic.InitElasticSize("http://127.0.0.1:13001", 10)
+	//es_data:=*elastic.Get("bidding","bidding",query)
+	num := 0
+	arr := make([]string, 0)
+	for i := 0; i < 2; i++ {
+		str := ""
+		if i == 0 {
+			str = fmt.Sprintf("%d", 0)
+		} else {
+			str = fmt.Sprintf("%d", i*200+1)
+		}
+		query := `{"query":{"bool":{"must":[{"term":{"bidding.winner":"注册地在国家级贫困县域内物业公司"}}],"must_not":[],"should":[]}},` + `"from":"` + str + `","size":"200","sort":[],"facets":{},"_source":["_id"]}`
+		es_data := *elastic.Get("bidding", "bidding", query)
+		log.Debug("当前查询结果:", len(es_data))
+		for _, v := range es_data {
+			num++
+			tmpid := qu.ObjToString(v["_id"])
+			arr = append(arr, tmpid)
+		}
+		if num%1000 == 0 {
+			log.Debug("cur index ", num, "~", len(arr))
+		}
+		if es_data == nil || len(es_data) == 0 {
+			break
+		}
+	}
+	log.Debug("is over ", num, "~", len(arr))
+	for _, v := range arr {
+		save_mgo.Save("1111", map[string]interface{}{
+			"bidding_id": v,
+		})
+	}
+}
+
+// 导出新标注~数据 字段验证
+func exportNewMarkedata() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("marked_new").Find(&q).Iter()
+	key_map, key_arr := map[string]interface{}{
+		"area":         1,
+		"city":         1,
+		"buyer":        1,
+		"agency":       1,
+		"s_winner":     1,
+		"budget":       1,
+		"bidamount":    1,
+		"projectcode":  1,
+		"contractcode": 1,
+	}, []string{
+		"area",
+		"city",
+		"buyer",
+		"agency",
+		"s_winner",
+		"budget",
+		"bidamount",
+		"projectcode",
+		"contractcode",
+	}
+	os.Remove("111111.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("新标注~验证~")
+	row := sheet.AddRow()
+	row.AddCell().Value = "唯一标识"
+	for i := 0; i < len(key_arr); i++ {
+		row.AddCell().Value = key_arr[i]
+	}
+	row.AddCell().Value = "原文链接"
+	row.AddCell().Value = "剑鱼链接"
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		v_baseinfo := *qu.ObjToMap(tmp["v_baseinfo"])
+		v_taginfo := *qu.ObjToMap(tmp["v_taginfo"])
+		dict := map[string]interface{}{}
+		for k, v := range v_taginfo {
+			if qu.IntAll(v) > 1 && key_map[k] != nil {
+				dict[k] = v_baseinfo[k]
+			}
+		}
+		if len(dict) > 0 {
+			isok++
+			row := sheet.AddRow()
+			row.AddCell().Value = BsonTOStringId(tmp["_id"])
+			for _, v := range key_arr {
+				if v == "budget" || v == "bidamount" {
+					if v_baseinfo[v] != nil {
+						row.AddCell().SetString(fmt.Sprintf("%f", qu.Float64All(v_baseinfo[v])))
+					} else {
+						row.AddCell().Value = ""
+					}
+				} else {
+					row.AddCell().Value = qu.ObjToString(v_baseinfo[v])
+				}
+			}
+			row.AddCell().Value = qu.ObjToString(v_baseinfo["href"])
+			jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+			row.AddCell().Value = jyhref
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+
+	err := f.Save("111111.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+		return
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+
+}
+
+// 导出当前标签~
+func exportTagInfo() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_tag_info").Find(&q).Iter()
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		content := []string{}
+		if list, ok := tmp["content"].(primitive.A); ok {
+			content = qu.ObjArrToStringArr(list)
+		} else {
+			if list, ok := tmp["content"].([]interface{}); ok {
+				content = qu.ObjArrToStringArr(list)
+			}
+		}
+		s_name := qu.ObjToString(tmp["s_name"])
+		s_field := qu.ObjToString(tmp["s_field"])
+		for _, v := range content {
+			isok++
+			save_mgo.Save("zktest_tag_unique", map[string]interface{}{
+				"s_name":  s_name,
+				"s_field": s_field,
+				"t_name":  v,
+			})
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+// 对比数据...
+func comparativedata() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_alpha_bidding_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		winner := qu.ObjToString(tmp["winner"])
+		data := save_mgo.FindById("zktest_alpha_data", tmpid)
+		if data != nil && len(data) > 2 {
+			winner_ys := qu.ObjToString(data["winner_ys"])
+			is_ys := false
+			if ys, ok := data["is_ys"].(bool); ok {
+				is_ys = ys
+			}
+			if is_ys && winner == winner_ys {
+				isok++
+			}
+		} else {
+			log.Debug("异常~", tmpid)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+// 对疑似单位打标记
+func playtagYswinner() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_alpha_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		winner_ys := qu.ObjToString(tmp["winner_ys"])
+		data := save_mgo.FindOne("qyxy_std", map[string]interface{}{
+			"company_name": winner_ys,
+		})
+		if data != nil && len(data) > 2 {
+			save_mgo.UpdateById("zktest_alpha_data", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"is_ys": true,
+				},
+			})
+			isok++
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+// 导出~正文可能含有的单位数据
+func exportAZwinnerdata() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lt": StringTOBsonId("626d5d000000000000000000"),
+		},
+	}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Select(map[string]interface{}{
+		"subtype": 1,
+		"detail":  1,
+		"winner":  1,
+	}).Iter()
+	var reg_str = regexp.MustCompile("[\u4E00-\u9FA5]{1,10}[A-Za-z]{1,5}[\u4E00-\u9FA5]{1,10}(公司|集团|单位|机构|企业|厂|场|院|所|店|中心|市|局|站|城|处|行|部|队|联合[会|体])")
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		subtype := qu.ObjToString(tmp["subtype"])
+		detail := qu.ObjToString(tmp["detail"])
+		winner := qu.ObjToString(tmp["winner"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if (subtype == "中标" || subtype == "成交" || subtype == "合同" || subtype == "单一") &&
+			winner != "" {
+			str := reg_str.FindString(detail)
+			if str != "" {
+				if isHeadWordEqual(winner, str) {
+					total, hit := dealWithWordsRules(winner, str)
+					if hit >= total/2 {
+						isok++
+						log.Debug(tmpid, "~", str, "~", winner)
+						save_mgo.Save("zktest_alpha_data", map[string]interface{}{
+							"_id":       tmp["_id"],
+							"winner":    winner,
+							"winner_ys": str,
+						})
+					}
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+// 计算首部词语是否一致
+func isHeadWordEqual(a string, b string) bool {
+	namea, nameb := []rune(a), []rune(b)
+	new_a := string(namea[:2])
+	new_b := string(nameb[:2])
+	if new_a == new_b {
+		return true
+	}
+	return false
+}
+
+// 击中数量以及比例
+func dealWithWordsRules(info_name string, source_name string) (int, int) {
+	total, hit := 0, 0
+	nameArr, _ := calculateWordCount(info_name)
+	_, total = calculateWordCount(source_name)
+	for _, v1 := range nameArr {
+		if strings.Contains(source_name, v1) {
+			hit++
+		}
+	}
+	return total, hit
+}
+
+// 分词结果
+func calculateWordCount(name string) ([]string, int) {
+	arr, space := make([]string, 0), 2
+	total := utf8.RuneCountInString(name) - (space - 1)
+	if name == "" || total <= 0 {
+		return arr, 0
+	}
+	nameRune := []rune(name)
+	for i := 0; i < total; i++ {
+		new_str := string(nameRune[i : space+i])
+		arr = append(arr, new_str)
+	}
+	return arr, len(arr)
+}
+
+// 更新大金额数据~
+func updateToMuchMoneyData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("20220406_bidamount_data").Find(&q).Sort("_id").Iter()
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		p_list := []string{}
+		if list, ok := tmp["data_flag_list"].(primitive.A); ok {
+			p_list = qu.ObjArrToStringArr(list)
+		} else {
+			if list, ok := tmp["data_flag_list"].([]interface{}); ok {
+				p_list = qu.ObjArrToStringArr(list)
+			}
+		}
+		if isConformWrong(p_list) {
+			bidamount := qu.Float64All(tmp["bidamount"])
+			new_bidamount := bidamount / float64(10000)
+			save_mgo.Save("00000", map[string]interface{}{
+				"bidamount": new_bidamount,
+				"_id":       StringTOBsonId(qu.ObjToString(tmp["_id"])),
+			})
+			isok++
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+func isConformWrong(arr []string) bool {
+	if len(arr) > 0 {
+		for _, v := range arr {
+			if v == "wrong_2" || v == "wrong_3" || v == "wrong_4" {
+
+			} else {
+				return false
+			}
+		}
+		return true
+	}
+	return false
+}
+
+// 导出新版标注数据
+func exportMarkNewData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"comeintime": map[string]interface{}{
+			"$gte": 1653494400,
+			"$lt":  1653580800,
+		},
+		"publishtime": map[string]interface{}{
+			"$gte": 1653494400,
+			"$lt":  1653580800,
+		},
+	}, 0, 0
+	limit := 500
+	dict := make(map[string]map[string]interface{}, 0)
+	log.Debug("准备遍历数据...")
+	it := sess.DB(save_mgo.DbName).C("result_20220219").Find(&q).Select(map[string]interface{}{
+		"site":    1,
+		"subtype": 1,
+		"toptype": 1,
+		"repeat":  1,
+	}).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+			s := ""
+			s1 := ""
+			for k, v := range dict {
+				if len(v) <= limit {
+					s1 += k + ","
+				} else {
+					s += k + ","
+				}
+			}
+			log.Debug("满足~", s)
+			log.Debug("不满足~", s1)
+		}
+		repeat := qu.IntAll(tmp["repeat"])
+		if repeat == 1 {
+			tmp = make(map[string]interface{})
+			continue
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		subtype := qu.ObjToString(tmp["subtype"])
+		toptype := qu.ObjToString(tmp["toptype"])
+		site := qu.ObjToString(tmp["site"])
+		if toptype == "招标" || subtype == "中标" || subtype == "成交" || subtype == "合同" {
+			isNext := true
+			if subtype == "招标" || subtype == "中标" || subtype == "竞谈" || subtype == "成交" {
+				if total%3 != 0 {
+					isNext = false
+				}
+			}
+			if isNext {
+				if dict[subtype] == nil { //无数据
+					dict[subtype] = map[string]interface{}{
+						site: tmpid,
+					}
+					isok++
+					save_mgo.Save("zktest_data", map[string]interface{}{
+						"_id": tmp["_id"],
+					})
+				} else {
+					d := dict[subtype]
+					if d[site] == nil && len(d) <= limit {
+						d[site] = tmpid
+						dict[subtype] = d
+						isok++
+						save_mgo.Save("zktest_data", map[string]interface{}{
+							"_id": tmp["_id"],
+						})
+					}
+				}
+			}
+
+		}
+
+		if isok > 10000 {
+			log.Debug("超过限制~结束")
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+
+	for k, v := range dict {
+		log.Debug(k, "~", len(v))
+	}
+
+}
+
+// 分析中标单位 不同数据
+func fenxiDiffWinnerData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("222222").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		winner := qu.ObjToString(tmp["winner"])
+
+		data := save_mgo.FindById("111111", tmpid)
+		if data != nil && len(data) > 2 {
+			if winner != qu.ObjToString(data["winner"]) {
+				isok++
+
+				save_mgo.Save("333333", map[string]interface{}{
+					"_id":         tmp["_id"],
+					"new_winner":  winner,
+					"old_winner":  qu.ObjToString(data["winner"]),
+					"href":        tmp["href"],
+					"jytest_href": tmp["jytest_href"],
+				})
+			}
+		} else {
+			log.Debug("异常...", tmp["_id"])
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+func update0519Data() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("a_repair_bidding_data_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		update := map[string]interface{}{}
+		if tmp["bidamount"] != nil {
+			update["bidamount"] = tmp["bidamount"]
+		}
+		if tmp["biddiscount"] != nil {
+			update["biddiscount"] = tmp["biddiscount"]
+		}
+
+		if len(update) > 0 {
+			isok++
+			python_mgo.UpdateQueryData("20220505Hs_kcsj", map[string]interface{}{
+				"id": BsonTOStringId(tmp["_id"]),
+			}, map[string]interface{}{
+				"$set": update,
+			})
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ...", total, isok)
+}
+
+// 导出空数据
+func exportBidamountKongData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	dict := map[string]interface{}{}
+	it := sess.DB(save_mgo.DbName).C("111111111").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		site := qu.ObjToString(tmp["site"])
+		if dict[site] != nil {
+			num := qu.IntAll(dict[site]) + 1
+			dict[site] = num
+		} else {
+			dict[site] = 1
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over buyer...", total)
+	rankArr := []int{}
+	siteArr := []string{}
+	for k, v := range dict {
+		siteArr = append(siteArr, k)
+		rankArr = append(rankArr, qu.IntAll(v))
+	}
+	rankArr, siteArr = preMethodSort(rankArr, siteArr)
+	log.Debug(len(rankArr), len(siteArr))
+	for k, v := range rankArr {
+		save_mgo.Save("aaaaaa", map[string]interface{}{
+			"rank":  k + 1,
+			"total": v,
+			"site":  siteArr[k],
+		})
+	}
+
+}
+
+func preMethodSort(slice []int, site []string) ([]int, []string) {
+	for n := 0; n <= len(slice); n++ {
+		for i := 1; i < len(slice)-n; i++ {
+			if slice[i] > slice[i-1] {
+				slice[i], slice[i-1] = slice[i-1], slice[i]
+				site[i], site[i-1] = site[i-1], site[i]
+			}
+		}
+	}
+	return slice, site
+}
+
+// 更新
+func updateBuyerCGYX() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("aaaaaaa").Find(&q).Select(map[string]interface{}{
+		"buyer": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		buyer := qu.ObjToString(tmp["buyer"])
+		if buyer != "" {
+			save_mgo.UpdateById("20220514_Rj_bidding", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"buyer": buyer,
+				},
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over buyer...", total, isok)
+}
+
+// 处理错误异常数据...
+func dealWithErrWordata() {
+
+	str_arr := qu.ObjArrToStringArr(sysconfig["rp_blacklist"].([]interface{}))
+	strs := strings.Join(str_arr, "|")
+	strs = "(" + strs + ")"
+	var reg = regexp.MustCompile(strs)
+
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	is_err := 0
+
+	dict := map[string][]string{}
+	it := sess.DB(save_mgo.DbName).C("winner_err").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, is_err)
+		}
+		name := qu.ObjToString(tmp["name"])
+		s := reg.FindString(name)
+		if s != "" {
+			//log.Debug(reg.FindString(name),"~",name)
+			if dict[s] == nil {
+				dict[s] = []string{name}
+			} else {
+				arr := dict[s]
+				arr = append(arr, name)
+				dict[s] = arr
+			}
+			is_err++
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	for k, v := range dict {
+		save_mgo.Save("winner_err_data", map[string]interface{}{
+			"word": k,
+			"name": v,
+		})
+	}
+
+	log.Debug(len(dict))
+	log.Debug("is over ", total, is_err)
+
+}
+
+func exportNewCityFieldData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lte": StringTOBsonId("6245d0000000000000000000"),
+		},
+	}, 0
+	isok := 0
+	site_data := map[string]int{}
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		site := qu.ObjToString(tmp["site"])
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		if area != "全国" && area != "" && city == "" {
+			num := qu.IntAll(site_data[site]) + 1
+			if num < 10 {
+				site_data[site] = num
+				isok++
+				save_mgo.Save("zktest_city_field_test", tmp)
+			}
+		}
+		if isok >= 1000 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+
+}
+
+// 导出-bidding-新字段数据
+func exportNewFieldData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lte": StringTOBsonId("61cf29000000000000000000"),
+		},
+	}, 0
+	isok := 0
+	var reg_str = regexp.MustCompile("(递交开始)")
+
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		toptype := qu.ObjToString(tmp["toptype"])
+		if toptype != "招标" {
+			tmp = make(map[string]interface{})
+			continue
+		}
+		detail := qu.ObjToString(tmp["detail"])
+		if reg_str.MatchString(detail) {
+			isok++
+			save_mgo.Save("zktest_extract_field", tmp)
+		}
+		if isok >= 200 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+
+}
+
+// 万倍金额标记
+func isMarkMuchMoney() {
+	var reg1 = regexp.MustCompile("0000.000000$")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("20220406_bidamount_data").Find(&q).Select(map[string]interface{}{
+		"bidamount": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, isok)
+		}
+		bidamount := qu.Float64All(tmp["bidamount"])
+		money_str := fmt.Sprintf("%f", bidamount)
+		if reg1.MatchString(money_str) {
+			isok++
+			save_mgo.UpdateStrId("20220406_bidamount_data", qu.ObjToString(tmp["_id"]), map[string]interface{}{
+				"$set": map[string]interface{}{
+					"is_wan": 1,
+				},
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+
+}
+
+// 导出模板数据
+func expMoBanShuJu() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	ok_1, ok_2 := 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_marked").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, ok_1, ok_2)
+		}
+		if total%3 != 0 {
+			tmp = make(map[string]interface{})
+			continue
+		}
+		//预计1200  4800拉取数据
+		ck_buyer := qu.Int64All(tmp["ck_buyer"])
+		ck_s_winner := qu.Int64All(tmp["ck_s_winner"])
+		ck_agency := qu.Int64All(tmp["ck_agency"])
+		ck_budget := qu.Int64All(tmp["ck_budget"])
+		ck_bidamount := qu.Int64All(tmp["ck_bidamount"])
+		if ck_buyer > 1 || ck_s_winner > 1 || ck_agency > 1 || ck_budget > 1 || ck_bidamount > 1 {
+			ok_1++
+			save_mgo.Save("zktest_ext_example", tmp)
+		} else {
+			ok_2++
+			save_mgo.Save("zktest_ext_example", tmp)
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, ok_1, ok_2)
+}
+
+// 修复城市数据
+func repairExtCity() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	ok_1, ok_2 := 0, 0
+	it := sess.DB("qfw").C("zktest_yixintong_info_new").Find(&q).Select(map[string]interface{}{
+		"area":     1,
+		"city":     1,
+		"district": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, ok_1, ok_2)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		new_area := qu.ObjToString(tmp["area"])
+		new_city := qu.ObjToString(tmp["city"])
+		new_district := qu.ObjToString(tmp["district"])
+		data_1 := save_mgo.FindById("result_20220218", tmpid)
+		if data_1 != nil && len(data_1) > 2 {
+			ok_1++
+			save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"area":     new_area,
+					"city":     new_city,
+					"district": new_district,
+				},
+			})
+		}
+		data_2 := save_mgo.FindById("result_20220219", tmpid)
+		if data_2 != nil && len(data_2) > 2 {
+			ok_2++
+			save_mgo.UpdateById("result_20220219", tmpid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"area":     new_area,
+					"city":     new_city,
+					"district": new_district,
+				},
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, ok_1, ok_2)
+}
+
+func repairRepeatData0308() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	ok_1, ok_2 := 0, 0
+	it := sess.DB("qfw").C("zktest_repeat_test").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, ok_1, ok_2)
+		}
+
+		tmpid := BsonTOStringId(tmp["_id"])
+		repeat_id := qu.ObjToString(tmp["repeat_id"])
+		repeat_reason := qu.ObjToString(tmp["repeat_reason"])
+
+		bidding_data := python_mgo.FindById("bidding", tmpid)
+		if bidding_data != nil && len(bidding_data) > 2 {
+			publishtime := qu.Int64All(bidding_data["publishtime"])
+			data_1 := save_mgo.FindById("result_20220218", tmpid)
+			if data_1 != nil && len(data_1) > 2 {
+				if publishtime < 0 {
+					log.Debug(tmpid)
+					ok_1++
+					save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+						"$set": map[string]interface{}{
+							"repeat":        1,
+							"repeat_id":     repeat_id,
+							"repeat_reason": repeat_reason,
+							"publishtime":   publishtime,
+						},
+					})
+				}
+			}
+			data_2 := save_mgo.FindById("result_20220219", tmpid)
+			if data_2 != nil && len(data_2) > 2 {
+				if publishtime < 0 {
+					log.Debug(tmpid)
+					ok_2++
+					save_mgo.UpdateById("result_20220219", tmpid, map[string]interface{}{
+						"$set": map[string]interface{}{
+							"repeat":        1,
+							"repeat_id":     repeat_id,
+							"repeat_reason": repeat_reason,
+							"publishtime":   publishtime,
+						},
+					})
+				}
+			}
+		} else {
+			log.Debug("异常-需要处理...", tmpid)
+			//data_1 := save_mgo.FindById("result_20220218",tmpid)
+			//if data_1!=nil && len(data_1)>2  {
+			//	save_mgo.DeleteById("result_20220218",tmpid)
+			//}
+			//data_2 := save_mgo.FindById("result_20220219",tmpid)
+			//if data_2!=nil && len(data_2)>2 {
+			//	save_mgo.DeleteById("result_20220219",tmpid)
+			//}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, ok_1, ok_2)
+
+}
+
+// 修复抽取数据
+func addCityXinXingExt() {
+	/*
+			"code" : "650109004002",
+		    "pcode" : "650109004",
+		    "province" : "新疆",
+		    "city" : "乌鲁木齐市",
+		    "district" : "米东区",
+		    "town" : "古牧地东路街道",
+		    "village" : "北苑社区居委会"
+	*/
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB("mixdata").C("111222").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		province := qu.ObjToString(tmp["province"])
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		town := qu.ObjToString(tmp["town"])
+		village := qu.ObjToString(tmp["village"])
+
+		city_code := fmt.Sprintf("%d", qu.IntAll(tmp["city_code"]))
+		district_code := fmt.Sprintf("%d", qu.IntAll(tmp["district_code"]))
+		town_code := fmt.Sprintf("%d", qu.IntAll(tmp["town_code"]))
+		village_code := fmt.Sprintf("%d", qu.IntAll(tmp["village_code"]))
+
+		data := map[string]interface{}{}
+		data["province"] = province
+		data["city"] = city
+		data["district"] = district
+
+		if village != "" { //五级
+			data["town"] = town
+			data["village"] = village
+			data["code"] = village_code
+			data["pcode"] = town_code
+		} else {
+			if town != "" { //四级
+				data["town"] = town
+				data["code"] = town_code
+				data["pcode"] = district_code
+			} else {
+				if city != "" { //三级
+					data["code"] = district_code
+					data["pcode"] = city_code
+				} else {
+					log.Debug("异常")
+				}
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// copy数据 2022-02-19之后
+func repairCopyNextData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$lte": StringTOBsonId("621508800000000000000000"),
+		},
+	}
+	log.Debug("查询条件~", q)
+	total, isok := 0, 0
+	repair_pool := make(chan bool, 10)
+	repair_wg := &sync.WaitGroup{}
+	it := sess.DB("qfw").C("result_20220218").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, isok, tmp["_id"])
+		}
+		repair_pool <- true
+		repair_wg.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-repair_pool
+				repair_wg.Done()
+			}()
+			tmpid := BsonTOStringId(tmp["_id"])
+			update_dict := map[string]interface{}{}
+			data := save_mgo.FindById("result_20210108", tmpid)
+			if data != nil && len(data) > 2 {
+				if data["buyerclass"] != nil {
+					update_dict["buyerclass"] = data["buyerclass"]
+				}
+				if data["subscopeclass"] != nil {
+					update_dict["subscopeclass"] = data["subscopeclass"]
+				}
+				if data["topscopeclass"] != nil {
+					update_dict["topscopeclass"] = data["topscopeclass"]
+				}
+
+				if len(update_dict) > 0 {
+					isok++
+					save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+						"$set": update_dict,
+					})
+				} else {
+					//log.Debug("未分类~~",tmpid)
+				}
+			} else {
+				//log.Debug("未关联~~",tmpid)
+			}
+		}(tmp)
+		tmp = make(map[string]interface{})
+	}
+	repair_wg.Wait()
+	log.Debug("is copy over ", total, isok)
+
+}
+
+// 补-标的物数据
+func consummatePurlist() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+
+	it := sess.DB("qfw").C("zktest_cgyx_data").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total, tmp["_id"])
+		}
+		tttid := qu.ObjToString(tmp["id"])
+		data := save_mgo.FindById("bidding", tttid)
+
+		if data == nil || len(data) < 2 {
+			log.Debug("异常", tttid)
+		} else {
+			updateid := BsonTOStringId(tmp["_id"])
+			save_mgo.UpdateById("zktest_cgyx_data", updateid, map[string]interface{}{
+				"$set": map[string]interface{}{
+					"purchasinglist": data["purchasinglist"],
+				},
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is set bdw over ", total)
+}
+
+// 敏感词修复标记
+func repairSensitiveTag() {
+
+	//从11月30号开始  61a4f9000000000000000000
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("620fc2800000000000000000"),
+			"$lte": StringTOBsonId("620fd0900000000000000000"),
+		},
+	}
+	total, isok1, isok2 := 0, 0, 0
+	it := sess.DB("qfw").C("result_20210108").Find(&q).Sort("_id").Iter()
+	//多线程处理
+	repair_pool := make(chan bool, 1)
+	repair_wg := &sync.WaitGroup{}
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, tmp["_id"], isok1, isok2)
+		}
+		repair_pool <- true
+		repair_wg.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-repair_pool
+				repair_wg.Done()
+			}()
+
+			tmpid := BsonTOStringId(tmp["_id"])
+			if tmp["log"] != nil {
+				isok1++
+				data := save_mgo.FindById("result_20220218", tmpid)
+				if data != nil && len(data) > 2 {
+					log_dict := *qu.ObjToMap(tmp["log"])
+					if len(log_dict) > 0 {
+						isok2++
+						update_dict := map[string]interface{}{}
+						for k, _ := range log_dict {
+							update_dict[k] = qu.ObjToString(tmp[k])
+						}
+						update_dict["log"] = log_dict
+
+						save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+							"$set": update_dict,
+						})
+					}
+				} else {
+					log.Debug("异常-未查询到数据", tmp["_id"])
+				}
+			}
+		}(tmp)
+
+		tmp = make(map[string]interface{})
+	}
+	repair_wg.Wait()
+	log.Debug("is sensitive over ", total, isok1, isok2)
+
+}
+
+// 修复重复标记
+func repairRepeatTag() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("620fc2800000000000000000"),
+			"$lte": StringTOBsonId("620fd0900000000000000000"),
+		},
+	}
+	total := 0
+	it := sess.DB("qfw").C("result_20220218").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"_id": 1,
+	}).Iter()
+
+	//多线程处理
+	repair_pool := make(chan bool, 5)
+	repair_wg := &sync.WaitGroup{}
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, tmp["_id"])
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		repair_pool <- true
+		repair_wg.Add(1)
+		go func(tmpid string) {
+			defer func() {
+				<-repair_pool
+				repair_wg.Done()
+			}()
+
+			data := save_mgo.FindById("result_20210108", tmpid)
+			if data != nil && len(data) > 2 {
+				repeat := qu.IntAll(data["repeat"])
+				if repeat == 1 {
+					update := map[string]interface{}{
+						"repeat": 1,
+					}
+					if data["repeat_id"] != "" {
+						update["repeat_id"] = data["repeat_id"]
+					}
+					if data["repeat_reason"] != "" {
+						update["repeat_reason"] = data["repeat_reason"]
+					}
+					save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+						"$set": update,
+					})
+				} else {
+					if data["repeat_ids"] != nil {
+						save_mgo.UpdateById("result_20220218", tmpid, map[string]interface{}{
+							"$set": map[string]interface{}{
+								"repeat_ids": data["repeat_ids"],
+							},
+						})
+					}
+				}
+			}
+		}(tmpid)
+
+		tmp = make(map[string]interface{})
+	}
+	repair_wg.Wait()
+	log.Debug("is city over ", total)
+
+}
+
+// 统计医疗器械数据
+func tongjiYLQX() {
+	//ylhydata
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	ok1, ok2, ok3 := 0, 0, 0
+	it := sess.DB("qfw").C("ylhydata").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("curent index ", total, "~", ok1, ok2, ok3)
+		}
+		p_list := []map[string]interface{}{}
+		yl_list := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			p_list = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				p_list = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+		if yl_purchasinglist, ok := tmp["yl_purchasinglist"].(primitive.A); ok {
+			yl_list = qu.ObjArrToMapArr(yl_purchasinglist)
+		} else {
+			if yl_purchasinglist, ok := tmp["yl_purchasinglist"].([]interface{}); ok {
+				yl_list = qu.ObjArrToMapArr(yl_purchasinglist)
+			}
+		}
+
+		if len(yl_list) > 0 {
+			ok1++
+		}
+		ok2 += len(p_list)
+		ok3 += len(yl_list)
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is bidding over ", total, ok1, ok2, ok3)
+
+}
+
+// 处理新疆兵团数据
+func dealWithBingTuanData() {
+	f, err := os.Open("1.txt")
+	if err != nil {
+
+	}
+	defer f.Close()
+	rd := bufio.NewReader(f)
+	total := 0
+	isHead := false
+	savedata := map[string]interface{}{}
+	for {
+		total++
+		line, err := rd.ReadString('\n') //以'\n'为结束符读入一行
+		if err != nil || io.EOF == err {
+			break
+		}
+		if line == "\n" {
+			isHead = true
+			continue
+		}
+		line = strings.ReplaceAll(line, "\n", "")
+		strArr := strings.Split(line, ",")
+
+		if isHead {
+			if len(savedata) > 2 {
+				save_mgo.Save("111", savedata)
+			}
+			savedata = map[string]interface{}{}
+			pre1 := "新疆生产建设兵团" + strArr[0]
+			pre2 := "新疆生产建设兵团" + strArr[1]
+			isHead = false
+			savedata["name"] = pre1
+			savedata["alias"] = pre2
+			savedata["area"] = "新疆"
+			savedata["city"] = strArr[2]
+			savedata["district"] = strArr[3]
+		} else {
+			list := []map[string]interface{}{}
+			if res, ok := savedata["list"].([]map[string]interface{}); ok {
+				list = res
+			}
+			list = append(list, map[string]interface{}{
+				"name":     strArr[0],
+				"area":     "新疆",
+				"city":     strArr[1],
+				"district": strArr[2],
+			})
+			savedata["list"] = list
+		}
+	}
+
+	if len(savedata) > 2 {
+		save_mgo.Save("area_xjbt", savedata)
+	}
+	log.Debug("总计", total, "行")
+}
+
+// 导出相关数据
+func exporToptypeRealData() {
+	os.Remove("类别字段统计.xlsx")
+	f := xlsx.NewFile()
+	//招标 结果 其它
+	classArr := []string{
+		"招标",
+		"结果",
+		"其它",
+	}
+	//准确率-比对-个站点-相关准确率统计
+	fieldArr := []string{
+		"projectname",
+		"projectcode",
+		"area",
+		"city",
+		"district",
+		"budget",
+		"bidamount",
+		"buyer",
+		"agency",
+		"s_winner",
+		"winnerperson",
+		"winnertel",
+		"winneraddr",
+		"agencyperson",
+		"agencytel",
+		"agencyaddr",
+		"buyerperson",
+		"buyertel",
+		"buyeraddr",
+		"projectscope",
+	}
+	fieldCh_AnArr := []string{
+		"项目名称",
+		"项目编号",
+		"省份",
+		"城市",
+		"区县",
+		"预算",
+		"中标金额",
+		"采购单位",
+		"代理机构",
+		"中标单位",
+		"中标联系人",
+		"中标联系人电话",
+		"中标联系人地址",
+		"代理机构联系人",
+		"代理机构联系人电话",
+		"代理机构联系人地址",
+		"采购单位联系人",
+		"采购单位联系人电话",
+		"采购单位联系人地址",
+		"项目范围",
+	}
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	tagDict := map[string]map[string]interface{}{}
+	it := sess.DB(save_mgo.DbName).C("f_sourceinfo_extract").Find(&q).Select(map[string]interface{}{
+		"v_baseinfo": 1,
+		"v_taginfo":  1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		v_baseinfo := *qu.ObjToMap(tmp["v_baseinfo"])
+		toptype := qu.ObjToString(v_baseinfo["toptype"])
+		v_taginfo := *qu.ObjToMap(tmp["v_taginfo"])
+
+		dictInfo := map[string]interface{}{}
+		if tagDict[toptype] != nil {
+			dictInfo = tagDict[toptype]
+		}
+		for _, field := range fieldArr {
+			info := map[string]interface{}{}
+			if dictInfo[field] != nil {
+				info = *qu.ObjToMap(dictInfo[field])
+			}
+			ok, err, all := qu.IntAll(info["ok"]), qu.IntAll(info["err"]), qu.IntAll(info["all"])
+			if qu.IntAll(v_taginfo[field]) == 1 {
+				ok++
+			} else {
+				err++
+			}
+			all++
+			dictInfo[field] = map[string]interface{}{
+				"ok":  ok,
+				"err": err,
+				"all": all,
+			}
+		}
+		tagDict[toptype] = dictInfo
+		tmp = make(map[string]interface{})
+	}
+
+	for _, v := range classArr {
+		infoData := tagDict[v]
+		str := v + "统计"
+		sheet, _ := f.AddSheet(str)
+		row := sheet.AddRow()
+		row.AddCell().Value = "字段"
+		row.AddCell().Value = "正确数"
+		row.AddCell().Value = "错误数"
+		row.AddCell().Value = "准确率"
+		for index, field := range fieldArr {
+			info := *qu.ObjToMap(infoData[field])
+			row = sheet.AddRow()
+			row.AddCell().Value = fieldCh_AnArr[index]
+			ok, err := qu.IntAll(info["ok"]), qu.IntAll(info["err"])
+			all := ok + err
+			row.AddCell().Value = fmt.Sprintf("%d", ok)
+			row.AddCell().Value = fmt.Sprintf("%d", err)
+			str := fmt.Sprintf("%.2f", 100*qu.Float64All(ok)/qu.Float64All(all))
+			row.AddCell().Value = str + "%"
+		}
+	}
+	f.Save("类别字段统计.xlsx")
+}
+
+// 导出相关数据
+func exportNumberSiteData() {
+	//招标 结果 其它
+	siteArr := []string{
+		"国家公共资源交易平台",
+		"中国政府采购网",
+		"广东省政府采购网",
+		"中国招标投标公共服务平台",
+		"湖南省政府采购电子卖场",
+		"中国山东政府采购网",
+		"湖北省政府采购网",
+		"浙江政府采购网",
+		"中国华能集团公司",
+		"河南省政府采购网",
+		"广西壮族自治区政府采购网",
+		"四川政府采购",
+		"基建云采购",
+		"中国电信阳光采购网",
+		"中国大唐集团公司电子商务平台",
+		"新疆维吾尔自治区政府采购网",
+		"机电产品招标投标电子交易平台",
+		"中国国际招标网",
+		"广东省网上中介服务超市",
+		"中国山西政府采购网",
+		"国家能源e购",
+		"必联电子招标投标平台",
+		"安徽省招标投标信息网",
+		"广东省电子化采购执行平台",
+		"安徽省政府采购网",
+		"云南省政府采购网",
+		"浙江省公共资源交易服务平台",
+		"江西省公共资源交易网",
+		"中央政府采购网",
+		"中国移动采购与招标网",
+	}
+	dataDict := map[string]map[string]interface{}{}
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_allfield_extract_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		site := qu.ObjToString(tmp["site"])
+		toptype := qu.ObjToString(tmp["toptype"])
+		dict := map[string]interface{}{}
+		if dataDict[site] != nil {
+			dict = dataDict[site]
+		}
+		num := qu.IntAll(dict[toptype])
+		dict[toptype] = num + 1
+		dataDict[site] = dict
+		tmp = make(map[string]interface{})
+	}
+
+	os.Remove("抽取结果统计.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("站点统计")
+	row := sheet.AddRow()
+	row.AddCell().Value = "站点"
+	row.AddCell().Value = "招标"
+	row.AddCell().Value = "结果"
+	row.AddCell().Value = "其它"
+	row.AddCell().Value = "合计"
+
+	t, t1, t2, t3 := 0, 0, 0, 0
+	for _, site := range siteArr {
+		data := dataDict[site]
+		num := qu.IntAll(data["招标"]) + qu.IntAll(data["结果"]) + qu.IntAll(data["其它"])
+		t += num
+		t1 += qu.IntAll(data["招标"])
+		t2 += qu.IntAll(data["结果"])
+		t3 += qu.IntAll(data["其它"])
+
+		row = sheet.AddRow()
+		row.AddCell().Value = site
+		row.AddCell().Value = fmt.Sprintf("%d", qu.IntAll(data["招标"]))
+		row.AddCell().Value = fmt.Sprintf("%d", qu.IntAll(data["结果"]))
+		row.AddCell().Value = fmt.Sprintf("%d", qu.IntAll(data["其它"]))
+		row.AddCell().Value = fmt.Sprintf("%d", num)
+	}
+	row = sheet.AddRow()
+	row = sheet.AddRow()
+	row.AddCell().Value = "总计"
+	row.AddCell().Value = fmt.Sprintf("%d", t1)
+	row.AddCell().Value = fmt.Sprintf("%d", t2)
+	row.AddCell().Value = fmt.Sprintf("%d", t3)
+	row.AddCell().Value = fmt.Sprintf("%d", t)
+
+	//准确率-比对-个站点-相关准确率统计
+	fieldArr := []string{
+		"projectname",
+		"projectcode",
+		"area",
+		"city",
+		"district",
+		"budget",
+		"bidamount",
+		"buyer",
+		"agency",
+		"s_winner",
+		"winnerperson",
+		"winnertel",
+		"winneraddr",
+		"agencyperson",
+		"agencytel",
+		"agencyaddr",
+		"buyerperson",
+		"buyertel",
+		"buyeraddr",
+		"projectscope",
+	}
+	fieldCh_AnArr := []string{
+		"项目名称",
+		"项目编号",
+		"省份",
+		"城市",
+		"区县",
+		"预算",
+		"中标金额",
+		"采购单位",
+		"代理机构",
+		"中标单位",
+		"中标联系人",
+		"中标联系人电话",
+		"中标联系人地址",
+		"代理机构联系人",
+		"代理机构联系人电话",
+		"代理机构联系人地址",
+		"采购单位联系人",
+		"采购单位联系人电话",
+		"采购单位联系人地址",
+		"项目范围",
+	}
+	tagDict := map[string]map[string]interface{}{}
+	sheet_1, _ := f.AddSheet("字段准确率统计")
+	row_1 := sheet_1.AddRow()
+	row_1.AddCell().Value = "站点/准确率"
+	row_1.AddCell().Value = "数量"
+	for index, _ := range fieldArr {
+		row_1.AddCell().Value = fieldCh_AnArr[index]
+	}
+	it = sess.DB(save_mgo.DbName).C("f_sourceinfo_extract").Find(&q).Select(map[string]interface{}{
+		"v_baseinfo": 1,
+		"v_taginfo":  1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		v_baseinfo := *qu.ObjToMap(tmp["v_baseinfo"])
+		site := qu.ObjToString(v_baseinfo["site"])
+		v_taginfo := *qu.ObjToMap(tmp["v_taginfo"])
+		dictInfo := map[string]interface{}{}
+		if tagDict[site] != nil {
+			dictInfo = tagDict[site]
+		}
+		for _, field := range fieldArr {
+			info := map[string]interface{}{}
+			if dictInfo[field] != nil {
+				info = *qu.ObjToMap(dictInfo[field])
+			}
+			ok, err, all := qu.IntAll(info["ok"]), qu.IntAll(info["err"]), qu.IntAll(info["all"])
+
+			if qu.IntAll(v_taginfo[field]) == 1 { //正确-
+				ok++
+			} else {
+				err++
+			}
+			all++
+			dictInfo[field] = map[string]interface{}{
+				"ok":  ok,
+				"err": err,
+				"all": all,
+			}
+		}
+		tagDict[site] = dictInfo
+		tmp = make(map[string]interface{})
+	}
+
+	for _, site := range siteArr {
+		dataInfo := tagDict[site]
+		num := qu.IntAll(dataDict[site]["招标"]) + qu.IntAll(dataDict[site]["结果"]) + qu.IntAll(dataDict[site]["其它"])
+		row_1 := sheet_1.AddRow()
+		row_1.AddCell().Value = site
+		row_1.AddCell().Value = fmt.Sprintf("%d", num)
+		for _, field := range fieldArr {
+			info := *qu.ObjToMap(dataInfo[field])
+			ok := qu.Float64All(info["ok"])
+			all := qu.Float64All(info["all"])
+			str := fmt.Sprintf("%.2f", 100*ok/all)
+			row_1.AddCell().Value = str + "%"
+		}
+	}
+
+	//整体准确率
+	sheet_2, _ := f.AddSheet("整体准确率统计")
+	row_2 := sheet_2.AddRow()
+	row_2.AddCell().Value = "字段"
+	row_2.AddCell().Value = "正确数"
+	row_2.AddCell().Value = "错误数"
+	row_2.AddCell().Value = "准确率"
+
+	for index, field := range fieldArr {
+		ok, err := 0, 0
+		row_2 = sheet_2.AddRow()
+		row_2.AddCell().Value = fieldCh_AnArr[index]
+		for _, v := range tagDict {
+			info := *qu.ObjToMap(v[field])
+			ok += qu.IntAll(info["ok"])
+			err += qu.IntAll(info["err"])
+		}
+		row_2.AddCell().Value = fmt.Sprintf("%d", ok)
+		row_2.AddCell().Value = fmt.Sprintf("%d", err)
+		str := fmt.Sprintf("%.2f", 100*qu.Float64All(ok)/qu.Float64All(t))
+		row_2.AddCell().Value = str + "%"
+	}
+	f.Save("抽取结果统计.xlsx")
+
+	/*
+		备注:
+		1、排行前30站点的数据
+		2、分类分别为:招标,结果,其它
+		3、总计1899条,经过人基础字段标注统计如下
+
+		类别为:招标,结果,其它排行前30站点
+		经过人工标注
+
+	*/
+}
+
+// 更新标注数据
+func updateMarkData() {
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_allfield_extract_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%100 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := save_mgo.FindById("zktest_allfield_bidding", tmpid)
+		es_data := *elastic.GetById("bidding", "bidding", tmpid)
+		dict := map[string]interface{}{
+			"projectinfo": data["projectinfo"],
+			"attach_text": data["attach_text"],
+			"detail":      data["detail"],
+			"contenthtml": data["contenthtml"],
+		}
+		if len(es_data) > 0 {
+			dict["filetext"] = es_data[0]["filetext"]
+		}
+		save_mgo.UpdateById("zktest_allfield_extract_data", tmpid, map[string]interface{}{
+			"$set": dict,
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+// 导出标注数据-id
+func exportAllFieldBiaoZhuData() {
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	//elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	sum_other_doc_count, total := float64(0), float64(2000)
+	siteDataArr := []map[string]interface{}{
+		{
+			"key":       "国家公共资源交易平台",
+			"doc_count": 5977861,
+		},
+		{
+			"key":       "中国政府采购网",
+			"doc_count": 5570412,
+		},
+		{
+			"key":       "广东省政府采购网",
+			"doc_count": 3666294,
+		},
+		{
+			"key":       "中国招标投标公共服务平台",
+			"doc_count": 2956079,
+		},
+		{
+			"key":       "湖南省政府采购电子卖场",
+			"doc_count": 2570453,
+		},
+		{
+			"key":       "中国山东政府采购网",
+			"doc_count": 1725388,
+		},
+		{
+			"key":       "湖北省政府采购网",
+			"doc_count": 1183525,
+		},
+		{
+			"key":       "浙江政府采购网",
+			"doc_count": 1094312,
+		},
+		{
+			"key":       "中国华能集团公司",
+			"doc_count": 991555,
+		},
+		{
+			"key":       "河南省政府采购网",
+			"doc_count": 943729,
+		},
+		{
+			"key":       "广西壮族自治区政府采购网",
+			"doc_count": 915851,
+		},
+		{
+			"key":       "四川政府采购",
+			"doc_count": 910203,
+		},
+		{
+			"key":       "基建云采购",
+			"doc_count": 907328,
+		},
+		{
+			"key":       "中国电信阳光采购网",
+			"doc_count": 804175,
+		},
+		{
+			"key":       "中国大唐集团公司电子商务平台",
+			"doc_count": 793013,
+		},
+		{
+			"key":       "新疆维吾尔自治区政府采购网",
+			"doc_count": 729870,
+		},
+		{
+			"key":       "机电产品招标投标电子交易平台",
+			"doc_count": 647304,
+		},
+		{
+			"key":       "中国国际招标网",
+			"doc_count": 615161,
+		},
+		{
+			"key":       "广东省网上中介服务超市",
+			"doc_count": 606003,
+		},
+		{
+			"key":       "中国山西政府采购网",
+			"doc_count": 590924,
+		},
+		{
+			"key":       "国家能源e购",
+			"doc_count": 579500,
+		},
+		{
+			"key":       "必联电子招标投标平台",
+			"doc_count": 573694,
+		},
+		{
+			"key":       "安徽省招标投标信息网",
+			"doc_count": 565450,
+		},
+		{
+			"key":       "广东省电子化采购执行平台",
+			"doc_count": 533442,
+		},
+		{
+			"key":       "安徽省政府采购网",
+			"doc_count": 531645,
+		},
+		{
+			"key":       "云南省政府采购网",
+			"doc_count": 524362,
+		},
+		{
+			"key":       "浙江省公共资源交易服务平台",
+			"doc_count": 486627,
+		},
+		{
+			"key":       "江西省公共资源交易网",
+			"doc_count": 470338,
+		},
+		{
+			"key":       "中央政府采购网",
+			"doc_count": 468231,
+		},
+		{
+			"key":       "中国移动采购与招标网",
+			"doc_count": 458486,
+		},
+	}
+	//目标数据量 -	站点比例
+	for _, v := range siteDataArr {
+		sum_other_doc_count += qu.Float64All(v["doc_count"])
+	}
+	typeMap := map[string]float64{
+		"其它": 0.1,
+		"招标": 0.5,
+		"结果": 0.4,
+	}
+	isok := 0
+	for k, s_data := range siteDataArr {
+		site := qu.ObjToString(s_data["key"])
+		doc_count := qu.Float64All(s_data["doc_count"])
+		space := doc_count / sum_other_doc_count
+		//其它+招标+结果
+		query := ``
+		for toptype, proportion := range typeMap {
+			size := total * space * proportion
+			cur_size := qu.IntAll(math.Ceil(size))
+			if toptype == "其它" {
+				query = fmt.Sprintf(`{"query":{"bool":{"must":[{"term":{"bidding.toptype":"%s"}},{"term":{"bidding.site":"%s"}},{"range":{"bidding.publishtime":{"from":"1546272000"}}},{"term":{"bidding.subtype":"合同"}}],"must_not":[],"should":[]}},"from":"0","size":"%s","sort":[],"_source":["_id"],"facets":{}}`, toptype, site, fmt.Sprintf("%d", cur_size))
+			} else {
+				query = fmt.Sprintf(`{"query":{"bool":{"must":[{"term":{"bidding.toptype":"%s"}},{"term":{"bidding.site":"%s"}},{"range":{"bidding.publishtime":{"from":"1622476800"}}}],"must_not":[],"should":[]}},"from":"0","size":"%s","sort":[],"_source":["_id"],"facets":{}}`, toptype, site, fmt.Sprintf("%d", cur_size))
+			}
+			resArr := *elastic.Get("bidding", "bidding", query)
+			if len(resArr) > 0 {
+				for _, v := range resArr {
+					isok++
+					tmpid := qu.ObjToString(v["_id"])
+					save_mgo.Save("zktest_allfield_mark_id", map[string]interface{}{
+						"_id": StringTOBsonId(tmpid),
+					})
+				}
+			}
+		}
+		log.Debug("第", k, "~", site, "~", isok)
+	}
+	log.Debug("is over ", isok)
+}
+
+// 导出错误数据
+func exportErrWrongBuyerData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_works_test_new_0107").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"buyer":          1,
+		"wrong_key_item": 1,
+	}).Iter()
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		wrong_key_item := []string{}
+		if res, ok := tmp["wrong_key_item"].(primitive.A); ok {
+			wrong_key_item = qu.ObjArrToStringArr(res)
+		} else {
+			if res, ok := tmp["wrong_key_item"].([]interface{}); ok {
+				wrong_key_item = qu.ObjArrToStringArr(res)
+			}
+		}
+		isWrong := false
+		for _, v := range wrong_key_item {
+			if qu.ObjToString(v) == "buyer" {
+				isWrong = true
+				break
+			}
+		}
+
+		if isWrong {
+			data := save_mgo.FindById("zktest_works_test_new", BsonTOStringId(tmp["_id"]))
+			wrong_key_item_old := []string{}
+			if res, ok := data["wrong_key_item"].(primitive.A); ok {
+				wrong_key_item_old = qu.ObjArrToStringArr(res)
+			} else {
+				if res, ok := data["wrong_key_item"].([]interface{}); ok {
+					wrong_key_item_old = qu.ObjArrToStringArr(res)
+				}
+			}
+			isExist := false
+			for _, v := range wrong_key_item_old {
+				if qu.ObjToString(v) == "buyer" {
+					isExist = true
+					break
+				}
+			}
+			if !isExist {
+				log.Debug(BsonTOStringId(tmp["_id"]))
+				log.Debug(tmp["buyer"], "~", data["buyer"])
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+
+func cleanClassStringData() {
+	log.Debug("清理特殊数据...")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	strReg := regexp.MustCompile(`([ⅡIⅢ]-[0-9]+([\\s ]+)?|^[0-9][0-9]|[ \n]+|^[-])`)
+	it := sess.DB(save_mgo.DbName).C("nmpa_product").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"product_class_1": 1,
+		"product_class_2": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		product_class_1 := qu.ObjToString(tmp["product_class_1"])
+		product_class_2 := qu.ObjToString(tmp["product_class_2"])
+		isUpdate := false
+		update := map[string]interface{}{}
+		if strReg.MatchString(product_class_1) {
+			isUpdate = true
+			product_class_1 = strReg.ReplaceAllString(product_class_1, "")
+			update["product_class_1"] = product_class_1
+		}
+		if strReg.MatchString(product_class_2) {
+			isUpdate = true
+			product_class_2 = strReg.ReplaceAllString(product_class_2, "")
+			update["product_class_2"] = product_class_2
+		}
+
+		if isUpdate {
+			isok++
+			log.Debug(tmp["product_class_1"], tmp["product_class_2"])
+			save_mgo.UpdateById("nmpa_product", BsonTOStringId(tmp["_id"]), map[string]interface{}{
+				"$set": update,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+
+}
+
+// 修复等级数据`class`
+func repairYiXieChaNewCategoryData() {
+	log.Debug("开始补......数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("nmpa_zcyl_fl").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"registNum": 1,
+		"category":  1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		registNum := qu.ObjToString(tmp["registNum"])
+		category := qu.ObjToString(tmp["category"])
+		if registNum != "" {
+			data := save_mgo.FindOne("nmpa_product", map[string]interface{}{
+				"reg_no": registNum,
+			})
+			if data != nil && len(data) > 2 {
+				isok++
+				save_mgo.UpdateById("nmpa_product", BsonTOStringId(data["_id"]), map[string]interface{}{
+					"$set": map[string]interface{}{
+						"class": category,
+					},
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", isok)
+
+}
+
+// 修复数据-new  nmpa_zcyl_fl
+func repairYiXieChaNewData() {
+	//医械查
+	log.Debug("开始补......数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("nmpa_zcyl_fl").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"registNum":       1,
+		"largeClassName":  1,
+		"oneProdCategory": 1,
+		"twoProdCategory": 1,
+	}).Iter()
+	//a:=`Ⅱ-11 用于其他生理、生化或免疫功能指标检测的试剂`
+	//b:=`I-2 样本处理用产品`
+	//c:=`Ⅲ-9 与流式技术相关的试剂`
+	strReg := regexp.MustCompile(`([ⅡIⅢ]-[0-9]+[\\s ]+|^[0-9][0-9]|[ \n]+)`)
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+
+		largeClassName := qu.ObjToString(tmp["largeClassName"])
+		oneProdCategory := qu.ObjToString(tmp["oneProdCategory"])
+		twoProdCategory := qu.ObjToString(tmp["twoProdCategory"])
+		oneProdCategory = strReg.ReplaceAllString(oneProdCategory, "")
+		twoProdCategory = strReg.ReplaceAllString(twoProdCategory, "")
+
+		//计算有效数
+		old_ok := effectiveStringOf(largeClassName, oneProdCategory, twoProdCategory)
+		update := map[string]interface{}{
+			"product_class":   largeClassName,
+			"product_class_1": oneProdCategory,
+			"product_class_2": twoProdCategory,
+			"isYiXieUpdate":   true,
+		}
+		registNum := qu.ObjToString(tmp["registNum"])
+		if registNum != "" && largeClassName != "" {
+			data := save_mgo.FindOne("nmpa_product", map[string]interface{}{
+				"reg_no": registNum,
+			})
+			if data != nil && len(data) > 2 {
+				product_class := qu.ObjToString(data["product_class"])
+				product_class_1 := qu.ObjToString(data["product_class_1"])
+				product_class_2 := qu.ObjToString(data["product_class_2"])
+				new_ok := effectiveStringOf(product_class, product_class_1, product_class_2)
+				if old_ok > new_ok {
+					isok++
+					save_mgo.UpdateById("nmpa_product", BsonTOStringId(data["_id"]), map[string]interface{}{
+						"$set": update,
+					})
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, "~", isok)
+}
+
+func effectiveStringOf(str1, str2, str3 string) int {
+	isok := 0
+	if str1 != "" {
+		isok++
+	}
+	if str2 != "" {
+		isok++
+	}
+	if str3 != "" {
+		isok++
+	}
+	return isok
+}
+
+func exportErrMarkCkData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	arr := []string{
+		"ck_agency",
+		"ck_bidamount",
+		"ck_budget",
+		"ck_buyer",
+		"ck_projectcode",
+		"ck_projectname",
+		"ck_s_winner",
+	}
+	isErr := 0
+	it := sess.DB(save_mgo.DbName).C("zktest_mark_extdata").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		str := ""
+		for _, v := range arr {
+			if qu.IntAll(tmp[v]) > 1 {
+				new_v := strings.ReplaceAll(v, "ck_", "")
+				str += new_v + ","
+			}
+		}
+		if str != "" {
+			isErr++
+			save_mgo.Save("1111", map[string]interface{}{
+				"_id":     tmp["_id"],
+				"href":    tmp["href"],
+				"jy_href": tmp["jytest_href"],
+				"field":   str,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, "~", isErr)
+}
+
+// 根据产品-公司导出68xx 16-01 相关数据-待定...
+func exportNewClassCompanyData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("nmpa_product").Find(&q).Sort("_id").Select(map[string]interface{}{
+		"reg_company":     1,
+		"product_class":   1,
+		"product_class_1": 1,
+		"product_class_2": 1,
+		"product_name":    1,
+	}).Iter()
+	isok := 0
+	dict := map[string]string{
+		"01": "有源手术器械",
+		"02": "无源手术器械",
+		"03": "神经和心血管手术器械",
+		"04": "骨科手术器械",
+		"05": "放射治疗器械",
+		"06": "医用成像器械",
+		"07": "医用诊察和监护器械",
+		"08": "呼吸、麻醉和急救器械",
+		"09": "物理治疗器械",
+		"10": "输血、透析和体外循环器械",
+		"11": "医疗器械消毒灭菌器械",
+		"12": "有源植入器械",
+		"13": "无源植入器械",
+		"14": "注输、护理和防护器械",
+		"15": "患者承载器械",
+		"16": "眼科器械",
+		"17": "口腔科器械",
+		"18": "妇产科、辅助生殖和避孕器械",
+		"19": "医用康复器械",
+		"20": "中医器械",
+		"21": "医用软件",
+		"22": "临床检验器械",
+		"27": "中医器械",
+		"28": "医用成像器械",
+		"32": "放射治疗器械",
+		"34": "医用成像器械",
+		"40": "体外诊断试剂",
+		"41": "临床检验器械",
+		"45": "输血、透析和体外循环器械",
+		"55": "口腔科器械",
+		"57": "医疗器械消毒灭菌器械",
+		"63": "口腔科器械",
+		"64": "注输、护理和防护器械",
+		"70": "医用软件",
+	}
+	reg_reg := regexp.MustCompile("[,,::][0-1][0-9]-[0-9]+")
+	clear_reg := regexp.MustCompile("[,,::]")
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isok)
+		}
+		product_name := qu.ObjToString(tmp["product_name"])
+		product_class := qu.ObjToString(tmp["product_class"])
+		product_class_1 := qu.ObjToString(tmp["product_class"])
+		product_class_2 := qu.ObjToString(tmp["product_class"])
+		reg_company := qu.ObjToString(tmp["reg_company"])
+		if product_class == "" || product_class_1 == "" || product_class_2 == "" {
+			dataArr, _ := save_mgo.Find("nmpa_company", map[string]interface{}{
+				"company": reg_company,
+				"class":   "生产型",
+			}, nil, map[string]interface{}{
+				"business_range": 1,
+				"product_range":  1,
+			})
+
+			oldArr := []string{}
+			oldMap := map[string]string{}
+			for _, v := range dataArr {
+				range_str := ""
+				business_range := qu.ObjToString(v["business_range"])
+				product_range := qu.ObjToString(v["product_range"])
+				if business_range != "" {
+					range_str = business_range
+				} else {
+					range_str = product_range
+				}
+				arr := reg_reg.FindAllString(range_str, -1)
+				for _, v1 := range arr {
+					new_v1 := clear_reg.ReplaceAllString(v1, "")
+					new_v1 = new_v1[:2]
+					vvvv := dict[new_v1]
+					//去重拼接
+					if oldMap[vvvv] == "" && vvvv != "" {
+						//映射值
+						oldArr = append(oldArr, vvvv)
+						oldMap[vvvv] = vvvv
+					}
+				}
+			}
+
+			if len(oldArr) > 0 {
+				isok++
+				class_str := strings.Join(oldArr, ",")
+				save_mgo.Save("zzzzzkkkkk", map[string]interface{}{
+					"_id":          tmp["_id"],
+					"class_str":    class_str,
+					"product_name": product_name,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, "~", isok)
+}
+
+// 统计数量
+func vitalWinnerBidamountData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	rank_data := map[string]map[string]interface{}{}
+	it := sess.DB(save_mgo.DbName).C("zktest_purchasing_3_data_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", len(rank_data))
+		}
+		winner := qu.ObjToString(tmp["winner"])
+		bidamount := qu.Float64All(tmp["bidamount"])
+		p_list := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			p_list = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				p_list = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+		cur_price := totalPrice(p_list)
+		if rank_data[winner] == nil {
+			rank_data[winner] = map[string]interface{}{
+				"total":      1,
+				"totalmoney": bidamount,
+				"totalprice": cur_price,
+			}
+		} else {
+			data := rank_data[winner]
+			total := qu.IntAll(data["total"])
+			totalmoney := qu.Float64All(data["totalmoney"])
+			totalprice := qu.Float64All(data["totalprice"])
+			total++
+			totalmoney += bidamount
+			totalprice += cur_price
+			rank_data[winner] = map[string]interface{}{
+				"total":      total,
+				"totalmoney": totalmoney,
+				"totalprice": totalprice,
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", len(rank_data))
+
+	//arr := []map[string]interface{}{}
+	rankList := RankList{}
+	for k, v := range rank_data {
+		rankList = append(rankList, &Rank{
+			TotalMoney: qu.Float64All(v["totalmoney"]),
+			TotalPrice: qu.Float64All(v["totalprice"]),
+			Total:      qu.IntAll(v["total"]),
+			Name:       k,
+		})
+	}
+	//开始map排序
+	log.Debug("开始排序...")
+	rankList.sortsUp(false)
+
+	os.Remove("1.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("金额排行")
+	row := sheet.AddRow()
+	row.AddCell().Value = "金额排名"
+	row.AddCell().Value = "中标单位"
+	row.AddCell().Value = "标的金额"
+	row.AddCell().Value = "项目金额"
+	logRank := rankList[0:50]
+	for k, v := range logRank {
+		row = sheet.AddRow()
+		row.AddCell().Value = fmt.Sprintf("%d", k+1)
+		row.AddCell().Value = fmt.Sprintf("%s", v.Name)
+		row.AddCell().Value = fmt.Sprintf("%f", v.TotalPrice)
+		row.AddCell().Value = fmt.Sprintf("%f", v.TotalMoney)
+	}
+	f.Save("1.xlsx")
+}
+
+type RankList []*Rank
+
+type Rank struct {
+	TotalMoney float64
+	TotalPrice float64
+	Total      int
+	Name       string
+}
+
+func (list RankList) len() int {
+	return len(list)
+}
+func (list RankList) swap(i, j int) {
+	list[i], list[j] = list[j], list[i]
+}
+func (list RankList) sortsUp(isUp bool) {
+	len := list.len()
+	for i := 0; i < len; i++ {
+		for j := i + 1; j < len; j++ {
+			if isUp {
+				if list.compare(i, j) {
+					list.swap(i, j)
+				}
+			} else {
+				if !list.compare(i, j) {
+					list.swap(i, j)
+				}
+			}
+		}
+	}
+}
+func (list RankList) compare(i, j int) bool {
+	if list[i].TotalPrice > list[j].TotalPrice {
+		return true
+	} else {
+		return false
+	}
+}
+
+func totalPrice(arr []map[string]interface{}) float64 {
+	money := qu.Float64All(0)
+	for _, v := range arr {
+		if qu.Float64All(v["totalprice"]) <= 1000000 {
+			money += qu.Float64All(v["totalprice"])
+		}
+	}
+	return money
+}
+
+// 读取excle数据 并导出
+func exportExcleData() {
+	ff, _ := xlsx.OpenFile("table.xlsx")
+	strReg := regexp.MustCompile(`(^[0-9][0-9]|[ \n]+)`)
+	for _, sheet := range ff.Sheets {
+		v := sheet
+		class := v.Name
+		for k, row := range sheet.Rows {
+			if k == 0 {
+				continue
+			}
+
+			var str []string
+			for _, cell := range row.Cells {
+				str = append(str, cell.String())
+			}
+
+			if !strReg.MatchString(str[2]) {
+				log.Debug("~~~~~~~~~", str)
+			}
+
+			new_str_1 := str[1]
+			new_str_2 := str[2]
+			new_str_1 = strReg.ReplaceAllString(new_str_1, "")
+			new_str_2 = strReg.ReplaceAllString(new_str_2, "")
+
+			new_str_6 := str[6]
+			if new_str_6 == "I" || new_str_6 == "Ⅰ" {
+				new_str_6 = "I"
+			}
+			if new_str_6 == "II" || new_str_6 == "Ⅱ" {
+				new_str_6 = "II"
+			}
+			if new_str_6 == "Ⅲ" || new_str_6 == "III" || new_str_6 == "Ⅲ(药械组合产品)" {
+				new_str_6 = "III"
+			}
+
+			dict := map[string]interface{}{
+				"product_class": class,
+				//"product_sort":str[0],
+				"product_class_1":  new_str_1,
+				"product_class_2":  new_str_2,
+				"product_describe": str[3],
+				"product_effect":   str[4],
+				"product_example":  str[5],
+				"product_level":    new_str_6,
+			}
+			save_mgo.Save("nmpa_class_example", dict)
+		}
+		log.Debug("目录:", class)
+	}
+}
+
+// 统计数量
+func exportBdwTotal() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	productArr := []string{
+		"sanger测序仪器",
+		"X辐射放射治疗立体定向系统",
+		"X射线发生、限束装置",
+		"X射线附属及辅助设备",
+		"X射线感光胶片",
+		"X射线高压发生器",
+		"X射线骨密度仪",
+		"X射线管",
+		"X射线管组件",
+		"X射线计算机体层摄影设备",
+		"X射线胶片显影剂、定影剂",
+		"X射线胶片自动洗片机",
+		"X射线摄影暗盒",
+		"X射线摄影患者支撑装置",
+		"X射线摄影用影像板成像装置",
+		"X射线探测器、X射线探测器及其影像系统",
+		"X射线影像接收处理装置",
+		"X射线影像增强器、X射线影像增强器电视系统",
+		"疤痕修复材料",
+		"拔罐器具",
+		"拔罐设备",
+		"包扎敷料",
+		"保护器",
+		"绷带",
+		"鼻部护理器械",
+		"鼻氧管",
+		"鼻阻力测量设备",
+		"笔式注射器",
+		"闭合夹",
+		"避孕凝胶",
+		"标记器",
+		"表面检查灯",
+		"髌骨爪",
+		"冰冻红细胞洗涤机用管路",
+		"丙烯酸树脂骨水泥",
+		"病理分析前样本处理仪器",
+		"病人护理防护用品",
+		"病人监护设备",
+		"玻璃注射器",
+		"剥离保护器",
+		"剥离器",
+		"不可吸收缝合线",
+		"不可吸收外科敷料",
+		"步态训练设备",
+		"材料输送器具",
+		"采血笔",
+		"采样设备和器具",
+		"测量器",
+		"测量器械",
+		"测试刺激电极",
+		"测试刺激器",
+		"测试延伸导线",
+		"测压导管",
+		"产床",
+		"肠道水疗机",
+		"肠营养泵",
+		"肠营养袋",
+		"肠营养器",
+		"常导型磁共振成像系统",
+		"超导型磁共振成像系统",
+		"超声电子内窥镜",
+		"超声多普勒胎儿监护设备",
+		"超声多普勒胎儿心率设备",
+		"超声多普勒血流分析设备",
+		"超声回波多普勒成像设备",
+		"超声脉冲回波成像设备",
+		"超声耦合垫",
+		"超声耦合剂",
+		"超声人体组织测量设备",
+		"超声生理参数测量、分析设备",
+		"超声手术设备",
+		"超声手术设备附件",
+		"超声手术设备及附件",
+		"超声水囊",
+		"超声探头",
+		"超声探头穿刺架",
+		"超声影像引导系统",
+		"超声影像诊断附属设备",
+		"超声影像诊断设备",
+		"超声治疗设备",
+		"超声治疗设备附件",
+		"超声治疗设备及附件",
+		"车载X射线机",
+		"撑开钳",
+		"持续正压通气用面罩、口罩、鼻罩",
+		"冲击波手术设备",
+		"冲击波碎石机",
+		"冲击波治疗设备",
+		"冲头",
+		"冲吸器",
+		"冲洗器械",
+		"臭氧消毒器",
+		"臭氧治疗设备",
+		"除颤电极",
+		"穿刺定位引导装置",
+		"穿刺器",
+		"穿刺器械",
+		"穿刺针",
+		"穿孔针",
+		"创面敷料",
+		"创面敷贴",
+		"创伤外科辅助器械",
+		"磁共振成像设备",
+		"磁共振定位装置",
+		"磁共振辅助刺激系统",
+		"磁共振辅助设备",
+		"磁共振造影注射装置",
+		"磁疗设备/器具",
+		"打拔器",
+		"打孔器",
+		"打磨抛光清洁器具",
+		"带环及颊面管",
+		"单/多部件记忆合金骨固定器械",
+		"单/多部件金属骨固定器械及附件",
+		"单/多部件可吸收骨固定器械",
+		"单/多部件颅颌面固定器械及附件",
+		"单/多部件预制颅骨成形术板及紧固件",
+		"单光子发射及X射线计算机断层成像系统",
+		"单光子发射计算机断层成像设备",
+		"单一气体检测器",
+		"导电膏",
+		"导管床",
+		"导管鞘",
+		"导管消毒连接器",
+		"导尿管",
+		"导丝",
+		"导引导管",
+		"导引器",
+		"导引套管",
+		"导钻",
+		"锝气体发生器",
+		"低温储存设备",
+		"低中频治疗设备",
+		"电磁定位系统",
+		"电导分析仪",
+		"电动病床",
+		"电动防压疮垫",
+		"电动患者手术位置固定辅助器械",
+		"电动手术台",
+		"电动推车、担架等器械",
+		"电动吻合器",
+		"电动诊疗台及诊疗椅",
+		"电解质分析仪器",
+		"电解质及血气分析设备",
+		"电解质血气分析仪器",
+		"电解质血气检测电极",
+		"电疗设备/器具",
+		"电生理标测导管",
+		"电声门图仪",
+		"电声学测量、分析设备",
+		"电位治疗设备",
+		"电泳仪器",
+		"电子内窥镜",
+		"电子内窥镜图像处理器",
+		"电子射野成像系统",
+		"垫单",
+		"定位、导向、测量器械",
+		"定位导向器械",
+		"定位导引针",
+		"定位针",
+		"定制式义齿",
+		"动磁场治疗设备",
+		"动静脉采血针及连接件",
+		"动静脉穿刺器",
+		"动脉瘤夹",
+		"动态血糖/葡萄糖监测设备",
+		"短波治疗仪",
+		"耳鼻喉植入物",
+		"耳内假体",
+		"耳声发射仪",
+		"耳声阻抗测量仪",
+		"二氧化碳吸收器",
+		"反光器具",
+		"防护服",
+		"防护口罩",
+		"防护器具",
+		"防龋材料",
+		"防散射滤线栅",
+		"防压疮垫",
+		"放射免疫γ计数器",
+		"放射性层析扫描装置",
+		"放射性核素标本测定装置",
+		"放射性核素成像辅助设备",
+		"放射性核素成像设备",
+		"放射性核素骨密度测量设备",
+		"放射性核素扫描装置",
+		"放射性核素诊断设备",
+		"放射性粒籽防护植入器",
+		"放射性粒籽植入治疗系统",
+		"放射治疗辅助软件",
+		"放射治疗患者摆位系统",
+		"放射治疗患者用固定装置",
+		"放射治疗激光定位系统",
+		"放射治疗计划系统软件",
+		"放射治疗模拟及图像引导系统",
+		"放射治疗模拟系统",
+		"放射治疗配套器械",
+		"放射治疗设备",
+		"放射治疗用X射线图像引导系统",
+		"放射治疗准直限束装置",
+		"非血管内导管",
+		"非血管内导管充盈装置",
+		"非血管内输液器械",
+		"非血管支架",
+		"肺功能测试设备",
+		"分离控制盒",
+		"分离钳",
+		"分流栓",
+		"分子生物学分析设备",
+		"粪便分析仪器",
+		"封堵球囊",
+		"缝合针",
+		"孵育器",
+		"浮针",
+		"辅助生殖穿刺取卵/取精针",
+		"辅助生殖导管",
+		"辅助生殖器械",
+		"辅助生殖微型工具",
+		"辅助生殖专用仪器",
+		"辅助位听觉调控设备",
+		"辅助位听觉设备",
+		"负压引流封闭膜",
+		"负压引流海绵",
+		"负压引流器及组件",
+		"负压治疗设备",
+		"妇产科测量、监护设备",
+		"妇产科承载器械",
+		"妇产科手术器械",
+		"妇产科用刀",
+		"妇产科用剪",
+		"妇产科用扩张器、牵开器",
+		"妇产科用镊、夹、钩、针",
+		"妇产科用钳",
+		"妇产科诊断器械",
+		"妇产科治疗器械",
+		"妇科剥离器械",
+		"妇科采样器械",
+		"妇科超声诊断设备",
+		"妇科假体器械",
+		"妇科检查器械",
+		"妇科内窥镜",
+		"妇科手术/检查床",
+		"妇科物理治疗器械",
+		"妇科压板",
+		"附件、耗材",
+		"复合内窥镜",
+		"复合树脂",
+		"复合体",
+		"富血小板血浆制备器",
+		"腹膜透析辅助设备",
+		"腹膜透析器具",
+		"腹膜透析设备",
+		"腹水超滤浓缩回输设备",
+		"伽玛射束远距离治疗机",
+		"伽玛射线探测装置",
+		"伽玛照相机",
+		"钙盐类骨填充植入物",
+		"盖髓材料",
+		"干化学尿液分析仪器",
+		"干热消毒灭菌设备",
+		"干眼检测仪",
+		"肛瘘塞",
+		"肛门镜",
+		"高频/射频手术设备及附件",
+		"高频/射频用电极及导管",
+		"高频呼吸机",
+		"高频手术设备",
+		"高频治疗设备",
+		"高强度超声治疗设备",
+		"隔离敷料",
+		"隔离护罩",
+		"隔离及赋形材料",
+		"隔离衣帽",
+		"根管充填封闭材料",
+		"根管预备辅助材料",
+		"攻丝用锥",
+		"供氧、排氧器",
+		"宫内节育器及取放器械",
+		"宫腔负压吸引设备及附件",
+		"骨把持器",
+		"骨钩",
+		"骨及组织用剪",
+		"骨接合植入物",
+		"骨锯",
+		"骨科动力手术设备",
+		"骨科内窥镜用刀",
+		"骨科内窥镜用刮匙",
+		"骨科内窥镜用剪",
+		"骨科内窥镜用钳",
+		"骨科其他手术器械",
+		"骨科牵引床及配件",
+		"骨科手术体位固定架",
+		"骨科填充和修复材料",
+		"骨科用刀",
+		"骨科用钩",
+		"骨科用刮",
+		"骨科用剪",
+		"骨科用锯",
+		"骨科用钳",
+		"骨科用有源器械",
+		"骨科用凿",
+		"骨科用针",
+		"骨科用锥",
+		"骨科用钻",
+		"骨科组织保护器具",
+		"骨蜡",
+		"骨水泥定型模具",
+		"骨水泥器械",
+		"骨填充及修复材料",
+		"骨凿",
+		"骨折复位器",
+		"固定针",
+		"固位器",
+		"固位桩",
+		"刮痧器具",
+		"刮匙",
+		"关节镜配套工具",
+		"关节外科辅助器械",
+		"关节训练设备",
+		"关节置换植入物",
+		"灌注导管",
+		"光动力激光治疗设备",
+		"光动力治疗设备",
+		"光面或带螺纹的金属骨固定紧固件",
+		"光相干断层成像系统",
+		"光学成像诊断设备",
+		"光学定位引导系统",
+		"光学内窥镜",
+		"光学相干断层扫描仪",
+		"光治疗设备",
+		"光治疗设备附件",
+		"硅胶环扎带",
+		"滚针",
+		"过氧化氢灭菌器",
+		"海水鼻腔清洗液",
+		"毫米波治疗设备",
+		"合拢器",
+		"核酸分子杂交仪器",
+		"核酸扩增分析仪器",
+		"核酸扩增仪器",
+		"核酸提取纯化仪",
+		"颌面部赝复及修复重建材料及制品",
+		"颌面固定植入物",
+		"红外热像仪",
+		"红外线乳腺诊断仪",
+		"红细胞沉降仪器",
+		"喉罩",
+		"呼气流量测量设备",
+		"呼吸、麻醉、急救设备辅助装置",
+		"呼吸、麻醉用管路、面罩",
+		"呼吸道用吸引导管",
+		"呼吸功能及气体分析测定装置",
+		"呼吸管路",
+		"呼吸管路辅助器械",
+		"呼吸门控系统",
+		"呼吸面罩",
+		"呼吸热量监测设备",
+		"呼吸设备",
+		"呼吸系统过滤器",
+		"呼吸训练器",
+		"呼吸压力测量设备",
+		"化学发光免疫分析仪器",
+		"化学消毒灭菌设备",
+		"踝关节假体",
+		"环柄注射器",
+		"环氧乙烷灭菌器",
+		"患者体位固定装置",
+		"患者位置固定辅助器械",
+		"患者运送隔离器械",
+		"患者转运器械",
+		"活检枪",
+		"活检针",
+		"基础通用辅助器械",
+		"基台定制材料",
+		"基台及附件",
+		"基因测序仪器",
+		"激光采血仪",
+		"激光手术设备",
+		"激光手术设备及附件",
+		"激光治疗设备",
+		"急救和转运用呼吸机",
+		"急救设备",
+		"急救毯",
+		"棘突植入物",
+		"脊柱外科辅助器械",
+		"脊柱植入物",
+		"脊柱椎板间固定系统",
+		"脊柱椎弓根系统",
+		"脊柱椎体间固定/置换系统",
+		"计数板",
+		"计算机辅助诊断/分析软件",
+		"加压治疗设备",
+		"夹板及固定带",
+		"夹持、固定器械",
+		"夹持/复位用钳",
+		"夹子装置",
+		"家用呼吸机",
+		"家用呼吸支持设备",
+		"甲醛灭菌器",
+		"间接免疫荧光分析仪器",
+		"肩关节假体",
+		"监护软件",
+		"监护设备",
+		"检验及其他辅助设备",
+		"简易转移器械",
+		"胶带",
+		"胶囊内窥镜姿态控制器",
+		"胶囊式内窥镜系统",
+		"胶片观察装置",
+		"胶片扫描仪",
+		"角膜地形图仪",
+		"角膜共焦显微镜",
+		"角膜基质环",
+		"角膜基质片",
+		"角膜内皮细胞显微镜",
+		"矫治器具及附件",
+		"接触镜",
+		"接触镜护理产品",
+		"洁净工作台",
+		"洁净屏",
+		"洁治器具",
+		"结扎手术器械",
+		"截骨用刀",
+		"介入术用骨锥",
+		"金属固定环扎装置",
+		"金属髓内装置",
+		"金属填充物",
+		"紧固、支撑工具",
+		"近距离后装治疗设备",
+		"经鼻肠营养导管",
+		"经皮肠营养导管",
+		"精子分析仪器",
+		"静磁场治疗器具",
+		"静电贴敷器具",
+		"静脉尿路造影腹压器",
+		"静脉输液针",
+		"静脉血样采血管",
+		"灸疗器具",
+		"灸疗设备",
+		"决策支持软件",
+		"菌斑/龋齿指示剂",
+		"开口器械",
+		"开口用锥",
+		"康复训练床",
+		"康复训练软件",
+		"抗鼻腔过敏凝胶",
+		"可吸收缝合线",
+		"可吸收外科防粘连敷料",
+		"可吸收外科敷料",
+		"可吸收外科止血材料",
+		"口腔X射线机",
+		"口腔车针、钻",
+		"口腔成像辅助器具",
+		"口腔成像设备",
+		"口腔充填修复材料",
+		"口腔分离牵开用具",
+		"口腔隔离器具",
+		"口腔洁治清洗设备及附件",
+		"口腔溃疡、组织创面愈合治疗辅助材料",
+		"口腔麻醉推注设备",
+		"口腔清洗器具",
+		"口腔手术刀、凿",
+		"口腔手术剪",
+		"口腔义齿制作材料",
+		"口腔用镜",
+		"口腔用镊、夹",
+		"口腔用钳",
+		"口腔照明设备",
+		"口腔针",
+		"口腔诊察器具",
+		"口腔诊察设备",
+		"口腔正畸材料及制品",
+		"口腔植入及组织重建材料",
+		"口腔治疗辅助材料",
+		"口腔治疗器具",
+		"口腔治疗设备",
+		"口腔注射用具",
+		"口腔综合治疗设备配件",
+		"口咽/鼻咽通气道",
+		"叩诊锤",
+		"髋关节假体",
+		"扩孔用刀",
+		"扩髓器",
+		"扩髓用钻",
+		"扩张导管",
+		"扩张器",
+		"扩张钳",
+		"拉钩",
+		"蜡",
+		"蓝光治疗设备",
+		"泪道管",
+		"泪点塞",
+		"冷冻手术设备",
+		"冷冻手术设备及附件",
+		"冷冻消融针及导管",
+		"离心泵泵头",
+		"离心式血液成分分离器",
+		"力疗设备/器具",
+		"连接阀",
+		"连接器套筒",
+		"连续性血液净化设备",
+		"临时充填材料",
+		"临时起搏电极导线",
+		"临时起搏器",
+		"流式点阵仪器",
+		"流式细胞分析仪器",
+		"流式细胞术样本裂解仪",
+		"漏斗胸成形系统",
+		"颅骨夹/锁",
+		"颅骨矫形器械",
+		"颅脑外引流收集装置",
+		"颅内弹簧圈系统",
+		"颅内动脉瘤血流导向装置",
+		"颅内栓塞器械",
+		"颅内支架系统",
+		"麻醉储气囊",
+		"麻醉穿刺针",
+		"麻醉废气吸附器",
+		"麻醉机",
+		"麻醉面罩",
+		"麻醉气体净化传递和收集系统",
+		"麻醉器械",
+		"麻醉蒸发器",
+		"埋线针",
+		"脉搏血氧测量设备",
+		"脉搏血氧传感器",
+		"酶联免疫分析仪器",
+		"泌尿、消化动力学测量、分析设备",
+		"泌尿X射线机",
+		"免缝闭合器械",
+		"免疫层析分析仪器",
+		"免疫分析设备",
+		"免疫分析一体机",
+		"免疫散射浊度分析仪器",
+		"免疫印迹仪器",
+		"模型材料",
+		"末梢采血管",
+		"末梢采血针",
+		"末梢血采集容器",
+		"囊袋张力环",
+		"囊袋张力环植入器械",
+		"脑磁图设备",
+		"脑积水分流器及组件",
+		"内窥镜插入形状观测系统",
+		"内窥镜冲洗吸引器",
+		"内窥镜辅助用品",
+		"内窥镜功能供给装置",
+		"内窥镜膨腔泵",
+		"内窥镜气囊控制器",
+		"内窥镜切口牵开保护器",
+		"内窥镜取样针",
+		"内窥镜润滑剂",
+		"内窥镜摄像系统",
+		"内窥镜手术用有源设备",
+		"内窥镜送气装置",
+		"内窥镜先端帽",
+		"内窥镜咬口、套管",
+		"内窥镜用剥离器",
+		"内窥镜用导引器",
+		"内窥镜用分离钳",
+		"内窥镜用给物器",
+		"内窥镜用钩",
+		"内窥镜用活检袋",
+		"内窥镜用剪",
+		"内窥镜用冷光源",
+		"内窥镜用气囊导管",
+		"内窥镜用气囊扩张器",
+		"内窥镜用器械钳",
+		"内窥镜用牵开器",
+		"内窥镜用取石器械",
+		"内窥镜用取石球囊导管",
+		"内窥镜用取样钳",
+		"内窥镜用套扎器",
+		"内窥镜用推结器",
+		"内窥镜用吻",
+		"内窥镜用细胞刷",
+		"内窥镜用异物钳",
+		"内窥镜用组织刮匙",
+		"内窥镜用组织钳",
+		"尿液分析系统",
+		"尿液及其他样本分析设备",
+		"尿液有形成分分析仪器",
+		"颞下颌关节假体",
+		"凝胶",
+		"凝血分析仪器",
+		"排气针",
+		"排线器",
+		"排龈材料",
+		"刨骨器",
+		"培养与孵育设备",
+		"配套工具",
+		"盆底肌肉训练设备",
+		"皮肤针",
+		"皮内针",
+		"平衡测试设备",
+		"平衡训练设备",
+		"屏障式避孕器械",
+		"其他测量、分析设备",
+		"其他化学消毒灭菌器",
+		"其他口腔材料",
+		"其他手术设备",
+		"其他体液分析仪器",
+		"其他体液形态学分析仪器",
+		"其他物理治疗设备",
+		"其他眼科治疗和手术设备",
+		"其他样本采集器具",
+		"其他医用分析设备",
+		"其他转移器械",
+		"其它器械",
+		"起搏系统分析设备",
+		"气道过敏反应测试设备",
+		"气动急救复苏器",
+		"气管插管用喉镜",
+		"气管内插管/气管套管",
+		"气囊式体外反搏装置",
+		"气体测定设备",
+		"器械夹",
+		"器械剪",
+		"器械镊",
+		"器械钳",
+		"牵开器",
+		"牵引器",
+		"牵引器具",
+		"牵引钳",
+		"牵引针",
+		"牵引治疗设备",
+		"腔静脉滤器",
+		"腔静脉滤器回收装置",
+		"强脉冲光治疗设备",
+		"敲拔器械",
+		"切/取骨钻",
+		"切割球囊",
+		"切割针",
+		"青光眼引流装置",
+		"清洁器",
+		"清洗、灌洗、吸引、给药器械",
+		"清洗消毒器",
+		"清洗消毒设备",
+		"球囊扩张导管",
+		"球囊扩张导管用球囊充压装置",
+		"取、植皮设备",
+		"取片机",
+		"取样器械",
+		"取样钳",
+		"龋齿探测设备",
+		"去冠器",
+		"热传导治疗设备",
+		"热辐射灭菌器",
+		"热辐射治疗设备",
+		"热交换设备",
+		"热空气灭菌器",
+		"热空气消毒器",
+		"热湿交换器",
+		"人工玻璃体球囊",
+		"人工复苏器",
+		"人工肝设备",
+		"人工晶状体",
+		"人工晶状体、人工玻璃体植入器械",
+		"人工颅骨",
+		"人工心脏瓣膜及瓣膜修复器械",
+		"人工血管",
+		"人体阻抗测量、分析设备",
+		"认知言语视听障碍康复设备",
+		"认知障碍康复设备",
+		"韧带手术器械",
+		"妊娠控制器械",
+		"乳房植入物",
+		"乳腺X射线机",
+		"软骨整形器械",
+		"软组织扩张器",
+		"润滑剂及载体",
+		"三棱针",
+		"扫描图像分析系统",
+		"色谱柱",
+		"筛查、分析软件",
+		"烧烫伤浸浴装置",
+		"舌肌康复训练器",
+		"射频浅表治疗设备",
+		"射频热疗设备",
+		"射频消融设备",
+		"射频消融设备用灌注泵",
+		"射线束扫描测量系统",
+		"摄影X射线机",
+		"神经调控程控设备",
+		"神经调控充电设备",
+		"神经调控设备",
+		"神经和肌肉刺激器用电极",
+		"神经和心血管手术器械-剥离器",
+		"神经和心血管手术器械-冲吸器",
+		"神经和心血管手术器械-穿刺导引器",
+		"神经和心血管手术器械-刀",
+		"神经和心血管手术器械-钩",
+		"神经和心血管手术器械-刮匙",
+		"神经和心血管手术器械-夹",
+		"神经和心血管手术器械-剪",
+		"神经和心血管手术器械-镊",
+		"神经和心血管手术器械-其他器械",
+		"神经和心血管手术器械-牵开器",
+		"神经和心血管手术器械-钳",
+		"神经和心血管手术器械-心血管介入器械",
+		"神经和心血管手术器械-针",
+		"神经监护设备",
+		"神经内/外科植入物",
+		"神经修复材料",
+		"肾及甲状腺功能测量设备",
+		"渗透压测定仪器",
+		"生化分析设备",
+		"生化分析仪器",
+		"生化免疫分析仪器",
+		"生理参数分析测量设备",
+		"生理参数诱发诊断设备",
+		"生理信号处理软件",
+		"生物安全柜",
+		"生物反馈治疗设备",
+		"生物芯片分析仪器",
+		"生殖道分泌物分析仪器",
+		"施夹器",
+		"施源器",
+		"湿热消毒灭菌设备",
+		"石膏拆除器械",
+		"石膏锯",
+		"石膏切割器具",
+		"石膏切割用刀",
+		"食道气管插管",
+		"试模",
+		"视功能检查设备和器具",
+		"视光设备和器具",
+		"视觉康复设备",
+		"视觉治疗设备",
+		"手柄",
+		"手部防护用品",
+		"手动病床",
+		"手动测量器械",
+		"手动测量用器械",
+		"手动防压疮垫",
+		"手动手术台",
+		"手动推车、担架等器械",
+		"手动诊疗台及诊疗椅",
+		"手术叉",
+		"手术锉",
+		"手术单",
+		"手术刀",
+		"手术导航、控制系统",
+		"手术导航系统",
+		"手术定位系统",
+		"手术动力系统",
+		"手术钩",
+		"手术刮匙",
+		"手术环",
+		"手术计划软件",
+		"手术锯",
+		"手术控制系统",
+		"手术膜",
+		"手术器械-剥离器",
+		"手术器械-冲吸器",
+		"手术器械-穿刺导引器",
+		"手术器械-钩",
+		"手术器械-刮匙",
+		"手术器械-夹",
+		"手术器械-剪",
+		"手术器械-镊",
+		"手术器械-其他器械",
+		"手术器械-牵开器",
+		"手术器械-钳",
+		"手术器械-吻合器械及材料",
+		"手术器械-针",
+		"手术室感染控制用品",
+		"手术室用衣帽",
+		"手术台",
+		"手术显微镜",
+		"手术针",
+		"输卵管封闭器械",
+		"输尿管支架",
+		"输送导引器",
+		"输血器",
+		"输氧面罩",
+		"输液、输血用连接件及附件",
+		"输液泵",
+		"输液袋",
+		"输液辅助电子设备",
+		"输液连接管路",
+		"输液器",
+		"输液信息采集系统",
+		"输液用放气针",
+		"术中牵引架及配件",
+		"数据处理软件",
+		"水刀",
+		"水门汀",
+		"睡眠呼吸监测设备",
+		"睡眠呼吸暂停治疗设备",
+		"塑形工具",
+		"酸碱度检测设备",
+		"酸蚀剂",
+		"酸性氧化电位水生成器",
+		"探针",
+		"套扎器",
+		"套针外周导管",
+		"体表电极",
+		"体表器械固定装置",
+		"体表色素测量设备",
+		"体外除颤设备",
+		"体外辅助生殖用液",
+		"体外声音处理器",
+		"体外心肺支持辅助系统",
+		"体外心肺支持用升温仪",
+		"体外引流、吸引管",
+		"体外诊断类软件",
+		"体温测量设备",
+		"听觉检查音叉",
+		"听觉康复设备",
+		"听力计",
+		"听小骨假体",
+		"听诊器",
+		"通气辅助器械",
+		"通条",
+		"同种异体骨修复材料",
+		"头皮夹",
+		"透视X射线机",
+		"透视摄影X射线机",
+		"透视摄影床",
+		"透视荧光屏",
+		"图像分析仪器",
+		"图像扫描仪器",
+		"图像显示、处理、传输及打印设备",
+		"图像显示处理工作站",
+		"涂抹及吸液材料",
+		"推结器",
+		"托槽",
+		"脱敏剂",
+		"脱细胞皮肤",
+		"脱细胞真皮基质",
+		"外固定及牵引器械",
+		"外固定支架",
+		"外科补片/外科修补网",
+		"外科非织造布敷料",
+		"外科海绵敷料",
+		"外科口罩",
+		"外科手套",
+		"外科织造布类敷料",
+		"腕关节假体",
+		"微波手术设备",
+		"微波治疗设备",
+		"微创骨导引器",
+		"微创入路装置",
+		"微导管",
+		"微量元素分析仪器",
+		"微生物比浊仪器",
+		"微生物分析设备",
+		"微生物鉴定药敏分析仪器",
+		"微生物鉴定仪器",
+		"微生物培养监测仪器",
+		"微生物药敏培养监测仪器",
+		"微生物质谱鉴定仪器",
+		"微栓过滤器",
+		"微循环显微镜",
+		"胃肠X射线检查用品",
+		"胃肠超声显像粉",
+		"胃隐血采集器具",
+		"温热治疗设备/器具",
+		"温针治疗设备",
+		"吻合器",
+		"无创血流分析设备",
+		"无创血压测量设备",
+		"无创血压袖带",
+		"无菌接管机",
+		"无菌注射器",
+		"无源患者手术位置固定辅助器械",
+		"无源输注泵",
+		"无源止血带",
+		"无源止血器",
+		"无针注射器",
+		"五官科检查镜",
+		"物理降温设备",
+		"雾化面罩",
+		"雾化设备/雾化装置",
+		"吸潮纸尖",
+		"吸入镇痛装置",
+		"吸氧头罩",
+		"吸引器",
+		"膝关节假体",
+		"洗板机",
+		"细菌内毒素/真菌葡聚糖检测仪器",
+		"限束装置",
+		"小针刀",
+		"携带式X射线机",
+		"心电测量、分析设备",
+		"心电导联线",
+		"心肺复苏设备",
+		"心肺转流监测设备",
+		"心肺转流器具",
+		"心肺转流设备",
+		"心肺转流用泵",
+		"心肺转流用管路及接头",
+		"心血管补片",
+		"心血管功能检测设备",
+		"心血管栓塞器械",
+		"心血管植入物",
+		"心脏电生理标测设备",
+		"心脏封堵器",
+		"心脏封堵器输送线缆",
+		"心脏封堵器装载器",
+		"心脏节律管理程控设备",
+		"心脏节律管理设备",
+		"心脏停跳液",
+		"心脏停跳液灌注器",
+		"芯钻",
+		"形态学分析前样本处理设备",
+		"胸骨捆扎/抓扣固定系统",
+		"胸腔引流装置",
+		"修补固定器",
+		"修整用钻",
+		"悬吊、支撑装置",
+		"穴位磁疗器具",
+		"穴位电刺激设备",
+		"穴位激光刺激设备",
+		"穴位微波刺激设备",
+		"穴位压力刺激器具",
+		"血袋",
+		"血管缝合装置",
+		"血管内回收装置",
+		"血管内假体",
+		"血管内留置针",
+		"血管内皮功能测试设备",
+		"血管内输液器械",
+		"血管显像设备",
+		"血管硬度测量设备",
+		"血管造影X射线机",
+		"血管支架",
+		"血浆病毒灭活设备",
+		"血浆管路",
+		"血流变分析仪器",
+		"血气分析仪器",
+		"血栓抽吸导管",
+		"血糖及血糖相关参数分析仪器",
+		"血细胞处理设备",
+		"血细胞分析前样本处理仪器",
+		"血细胞分析仪器",
+		"血细胞形态分析仪器",
+		"血小板分析仪器",
+		"血小板振荡器",
+		"血型分析仪器",
+		"血液采集卡",
+		"血液成分分离设备",
+		"血液分离、处理、贮存器具",
+		"血液分离、处理、贮存设备",
+		"血液辐照设备",
+		"血液灌流器具",
+		"血液灌流设备",
+		"血液净化辅助器具",
+		"血液净化及腹膜透析器具",
+		"血液净化及腹膜透析设备",
+		"血液浓缩器",
+		"血液融化设备",
+		"血液透析辅助设备",
+		"血液透析器具",
+		"血液透析设备",
+		"血液学分析设备",
+		"血脂分离器具",
+		"血脂分离设备",
+		"熏蒸治疗设备",
+		"循环肿瘤细胞分析仪器",
+		"压力绷带",
+		"压力蒸汽灭菌器",
+		"压迫器",
+		"压器",
+		"压舌板",
+		"压缩钳",
+		"牙本质测量设备",
+		"牙齿漂白材料",
+		"牙科锉",
+		"牙科分离剂",
+		"牙科膜片",
+		"牙科手机及附件",
+		"牙科用椅",
+		"牙科治疗机",
+		"牙髓活力测试剂",
+		"牙髓活力测试设备",
+		"牙挺",
+		"牙托梗",
+		"牙种植体",
+		"牙周袋探测设备",
+		"牙周塞治剂",
+		"氩保护气凝设备",
+		"延长管",
+		"言语障碍测量设备",
+		"言语障碍康复设备",
+		"研磨抛光材料",
+		"眼科测量诊断设备和器具",
+		"眼科超声手术设备",
+		"眼科超声诊断设备",
+		"眼科激光治疗设备",
+		"眼科矫治和防护器具",
+		"眼科冷冻治疗设备",
+		"眼科内窥镜及附件",
+		"眼科无源手术器械",
+		"眼科诊断辅助器具",
+		"眼科植入物及辅助器械",
+		"眼科治疗和手术辅助器具",
+		"眼科治疗和手术设备、辅助器具",
+		"眼内填充物",
+		"眼贴",
+		"眼用剥离器",
+		"眼用铲",
+		"眼用冲吸器",
+		"眼用刀",
+		"眼用钩",
+		"眼用刮匙",
+		"眼用夹",
+		"眼用剪",
+		"眼用锯",
+		"眼用扩张器",
+		"眼用镊",
+		"眼用牵开器",
+		"眼用钳",
+		"眼用凿",
+		"眼用粘弹剂",
+		"眼用针",
+		"眼用钻",
+		"眼震电图设备",
+		"厌氧培养系统",
+		"验光设备和器具",
+		"氧合器",
+		"氧气发生器",
+		"氧气吸入器",
+		"样本处理系统",
+		"样本分离设备",
+		"遥测和中央监护设备",
+		"遥测监护设备",
+		"咬骨钳",
+		"咬合关系记录/检查材料",
+		"咬口",
+		"药物导入设备",
+		"药液用转移、配药器具",
+		"液体闪烁计数器",
+		"液相色谱分析仪器",
+		"医护人员防护用品",
+		"医学显微影像分析软件",
+		"医学影像处理软件",
+		"医学影像存储与传输系统软件",
+		"医用X射线治疗设备",
+		"医用病床",
+		"医用导管夹",
+		"医用电动吸引器械",
+		"医用电子加速器",
+		"医用防护衬垫",
+		"医用分子筛制氧机",
+		"医用分子筛制氧系统",
+		"医用妇科护垫",
+		"医用供气排气相关设备",
+		"医用光学放大器具",
+		"医用呼吸道湿化器",
+		"医用激光光纤",
+		"医用空气压缩机",
+		"医用离心机",
+		"医用轮椅车",
+		"医用膜分离制氧机",
+		"医用膜分离制氧系统",
+		"医用内窥镜",
+		"医用培养/恒温箱",
+		"医用气体报警系统",
+		"医用气体汇流排",
+		"医用气体混合器",
+		"医用轻离子治疗系统",
+		"医用清洗器",
+		"医用人工驱动吸引器械",
+		"医用射线防护设备",
+		"医用射线防护用具",
+		"医用射线防护装置",
+		"医用生物防护设备",
+		"医用图像打印机",
+		"医用显微镜",
+		"医用压缩气体供应系统",
+		"医用氧舱",
+		"医用婴儿床",
+		"医用增感屏",
+		"医用制氧设备",
+		"医用中心吸引系统",
+		"胰岛素泵",
+		"胰岛素泵用储液器",
+		"胰岛素泵用皮下输液器",
+		"移动式C形臂X射线机",
+		"以负压源或压力源为动力吸引器械",
+		"义齿试用材料",
+		"义齿用高分子材料及制品",
+		"义齿用金属材料及制品",
+		"义齿用陶瓷材料及制品",
+		"义眼片",
+		"义眼台",
+		"异物钳",
+		"阴道镜",
+		"阴道填塞材料",
+		"阴道洗涤器/给药器",
+		"阴茎假体",
+		"银汞合金",
+		"引流袋(容器)/收集袋(容器)、粪便管理器械",
+		"引流袋、粪便管理器械",
+		"引流导管",
+		"印模材料",
+		"婴儿辐射保暖台",
+		"婴儿光疗防护眼罩",
+		"婴儿培养箱",
+		"荧光免疫分析仪器",
+		"影像板",
+		"影像处理软件",
+		"影像记录介质",
+		"硬膜外麻醉导管",
+		"硬脑膜补片",
+		"永磁型磁共振成像系统",
+		"幽门螺旋杆菌分析仪器",
+		"有创颅内压设备",
+		"有创血压传感器",
+		"有源止血器",
+		"与非血管内导管配套用体外器械",
+		"预充式导管冲洗器",
+		"预处理剂",
+		"远程监护设备",
+		"远端保护器",
+		"运动康复训练器械",
+		"运动损伤软组织修复重建及置换植入物",
+		"运动损伤软组织修复重建植入物",
+		"运动损伤软组织置换植入物",
+		"造口、疤痕护理用品",
+		"造口护理及辅助器械",
+		"造影导管",
+		"造影剂注射装置",
+		"造影球囊",
+		"摘除镊",
+		"粘堵剂",
+		"粘合剂",
+		"粘接剂",
+		"针灸针",
+		"真耳测试仪",
+		"真空负压机",
+		"诊察辅助器械",
+		"诊断X射线机",
+		"诊疗台",
+		"振动训练设备",
+		"蒸汽消毒器",
+		"整形及普通外科植入物",
+		"整形填充材料",
+		"整形用注射填充物",
+		"正电子发射断层成像设备",
+		"正电子发射及X射线计算机断层成像系统",
+		"正电子发射及磁共振成像系统",
+		"正畸材料处理器械",
+		"正畸弹簧",
+		"正畸弹性体附件",
+		"正畸基托聚合物",
+		"正畸丝",
+		"支气管堵塞器",
+		"支气管内活瓣",
+		"肢体数字化体层摄影X射线机",
+		"直肠管",
+		"直流电治疗设备",
+		"植骨器械",
+		"植皮器",
+		"植入取出工具",
+		"植入式电极导线补件",
+		"植入式电极导线适配工具",
+		"植入式电极导线移除工具",
+		"植入式封堵工具",
+		"植入式给药器械",
+		"植入式神经刺激电极",
+		"植入式神经刺激器",
+		"植入式位听觉设备",
+		"植入式心律转复除颤器",
+		"植入式心脏除颤电极导线",
+		"植入式心脏起搏电极导线",
+		"植入式心脏起搏器",
+		"植入式心脏事件监测设备",
+		"植入式心脏收缩力调节设备",
+		"植入式循环辅助设备",
+		"植入式药物输注设备",
+		"植入物或石膏用剪",
+		"植入物塑形用钳",
+		"植入性止鼾装置",
+		"止血夹",
+		"止血器具",
+		"止血钳",
+		"指关节假体",
+		"质谱检测系统",
+		"治疗辅助器具",
+		"治疗呼吸机",
+		"治疗机用X射线管",
+		"治疗计划软件",
+		"中心静脉导管",
+		"中央监护系统",
+		"中医器具",
+		"中医治疗设备",
+		"种植辅助材料",
+		"种植体安装辅助器械",
+		"种植体密封材料",
+		"种植支抗",
+		"肘关节假体",
+		"煮沸消毒器",
+		"助产器械",
+		"助讲器",
+		"助视器",
+		"助听器",
+		"助行器械",
+		"贮血滤血器",
+		"注射、穿刺器械",
+		"注射泵",
+		"注射器辅助推动装置",
+		"注射针",
+		"铸造包埋材料",
+		"椎间盘假体",
+		"椎间融合器",
+		"椎体成形器械",
+		"椎体后缘处理器",
+		"准直限束装置",
+		"子宫操纵器",
+		"子宫输卵管造影、输卵管通液器械",
+		"紫外线消毒器",
+		"紫外线消毒设备",
+		"紫外治疗设备",
+		"自动给药系统",
+		"自动加样系统",
+		"自体血液处理器具",
+		"自体血液回收设备",
+		"足部隔离用品",
+		"足跟采血器",
+		"组合功能融合成像器械",
+		"组织工程生物羊膜",
+		"组织工程支架材料",
+		"组织剪",
+		"组织镊",
+		"组织钳",
+		"组织用钳",
+		"钻孔用钻",
+	}
+	it := sess.DB(save_mgo.DbName).C("zktest_bdw_words").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		productArr = append(productArr, qu.ObjToString(tmp["product_name"]))
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("产品名称~", len(productArr))
+	productDict := map[string]interface{}{}
+	total = 0
+	it = sess.DB(save_mgo.DbName).C("zktest_purchasing_3_data_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", len(productDict))
+		}
+		p_list := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			p_list = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				p_list = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+
+		for _, v := range p_list {
+			itemname := qu.ObjToString(v["itemname"])
+			isExist := false
+			isExistName := ""
+			for _, v := range productArr {
+				product_name := qu.ObjToString(v)
+				if strings.Contains(itemname, product_name) ||
+					strings.Contains(product_name, itemname) {
+					isExist = true
+					isExistName = product_name
+					break
+				}
+			}
+			if isExist {
+				productDict[isExistName] = 1
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, "~", len(productDict))
+}
+
+// 修复-classLevel
+func repairClassLevelData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("nmpa_class_example").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		product_level := qu.ObjToString(tmp["product_level"])
+		new_str := ""
+		if product_level == "I" || product_level == "Ⅰ" {
+			new_str = "I"
+		}
+		if product_level == "II" || product_level == "Ⅱ" {
+			new_str = "II"
+		}
+		if product_level == "Ⅲ" || product_level == "III" || product_level == "Ⅲ(药械组合产品)" {
+			new_str = "III"
+		}
+
+		if new_str == "" {
+			log.Debug(product_level, "~", BsonTOStringId(tmp["_id"]))
+		}
+		save_mgo.UpdateById("nmpa_class_example", BsonTOStringId(tmp["_id"]), map[string]interface{}{
+			"$set": map[string]interface{}{
+				"product_level": new_str,
+			},
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("加载完毕~", total)
+}
+
+// 修复有效标的物数据
+func repairEnableBdwData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	productArr := []string{
+		"sanger测序仪器",
+		"X辐射放射治疗立体定向系统",
+		"X射线发生、限束装置",
+		"X射线附属及辅助设备",
+		"X射线感光胶片",
+		"X射线高压发生器",
+		"X射线骨密度仪",
+		"X射线管",
+		"X射线管组件",
+		"X射线计算机体层摄影设备",
+		"X射线胶片显影剂、定影剂",
+		"X射线胶片自动洗片机",
+		"X射线摄影暗盒",
+		"X射线摄影患者支撑装置",
+		"X射线摄影用影像板成像装置",
+		"X射线探测器、X射线探测器及其影像系统",
+		"X射线影像接收处理装置",
+		"X射线影像增强器、X射线影像增强器电视系统",
+		"疤痕修复材料",
+		"拔罐器具",
+		"拔罐设备",
+		"包扎敷料",
+		"保护器",
+		"绷带",
+		"鼻部护理器械",
+		"鼻氧管",
+		"鼻阻力测量设备",
+		"笔式注射器",
+		"闭合夹",
+		"避孕凝胶",
+		"标记器",
+		"表面检查灯",
+		"髌骨爪",
+		"冰冻红细胞洗涤机用管路",
+		"丙烯酸树脂骨水泥",
+		"病理分析前样本处理仪器",
+		"病人护理防护用品",
+		"病人监护设备",
+		"玻璃注射器",
+		"剥离保护器",
+		"剥离器",
+		"不可吸收缝合线",
+		"不可吸收外科敷料",
+		"步态训练设备",
+		"材料输送器具",
+		"采血笔",
+		"采样设备和器具",
+		"测量器",
+		"测量器械",
+		"测试刺激电极",
+		"测试刺激器",
+		"测试延伸导线",
+		"测压导管",
+		"产床",
+		"肠道水疗机",
+		"肠营养泵",
+		"肠营养袋",
+		"肠营养器",
+		"常导型磁共振成像系统",
+		"超导型磁共振成像系统",
+		"超声电子内窥镜",
+		"超声多普勒胎儿监护设备",
+		"超声多普勒胎儿心率设备",
+		"超声多普勒血流分析设备",
+		"超声回波多普勒成像设备",
+		"超声脉冲回波成像设备",
+		"超声耦合垫",
+		"超声耦合剂",
+		"超声人体组织测量设备",
+		"超声生理参数测量、分析设备",
+		"超声手术设备",
+		"超声手术设备附件",
+		"超声手术设备及附件",
+		"超声水囊",
+		"超声探头",
+		"超声探头穿刺架",
+		"超声影像引导系统",
+		"超声影像诊断附属设备",
+		"超声影像诊断设备",
+		"超声治疗设备",
+		"超声治疗设备附件",
+		"超声治疗设备及附件",
+		"车载X射线机",
+		"撑开钳",
+		"持续正压通气用面罩、口罩、鼻罩",
+		"冲击波手术设备",
+		"冲击波碎石机",
+		"冲击波治疗设备",
+		"冲头",
+		"冲吸器",
+		"冲洗器械",
+		"臭氧消毒器",
+		"臭氧治疗设备",
+		"除颤电极",
+		"穿刺定位引导装置",
+		"穿刺器",
+		"穿刺器械",
+		"穿刺针",
+		"穿孔针",
+		"创面敷料",
+		"创面敷贴",
+		"创伤外科辅助器械",
+		"磁共振成像设备",
+		"磁共振定位装置",
+		"磁共振辅助刺激系统",
+		"磁共振辅助设备",
+		"磁共振造影注射装置",
+		"磁疗设备/器具",
+		"打拔器",
+		"打孔器",
+		"打磨抛光清洁器具",
+		"带环及颊面管",
+		"单/多部件记忆合金骨固定器械",
+		"单/多部件金属骨固定器械及附件",
+		"单/多部件可吸收骨固定器械",
+		"单/多部件颅颌面固定器械及附件",
+		"单/多部件预制颅骨成形术板及紧固件",
+		"单光子发射及X射线计算机断层成像系统",
+		"单光子发射计算机断层成像设备",
+		"单一气体检测器",
+		"导电膏",
+		"导管床",
+		"导管鞘",
+		"导管消毒连接器",
+		"导尿管",
+		"导丝",
+		"导引导管",
+		"导引器",
+		"导引套管",
+		"导钻",
+		"锝气体发生器",
+		"低温储存设备",
+		"低中频治疗设备",
+		"电磁定位系统",
+		"电导分析仪",
+		"电动病床",
+		"电动防压疮垫",
+		"电动患者手术位置固定辅助器械",
+		"电动手术台",
+		"电动推车、担架等器械",
+		"电动吻合器",
+		"电动诊疗台及诊疗椅",
+		"电解质分析仪器",
+		"电解质及血气分析设备",
+		"电解质血气分析仪器",
+		"电解质血气检测电极",
+		"电疗设备/器具",
+		"电生理标测导管",
+		"电声门图仪",
+		"电声学测量、分析设备",
+		"电位治疗设备",
+		"电泳仪器",
+		"电子内窥镜",
+		"电子内窥镜图像处理器",
+		"电子射野成像系统",
+		"垫单",
+		"定位、导向、测量器械",
+		"定位导向器械",
+		"定位导引针",
+		"定位针",
+		"定制式义齿",
+		"动磁场治疗设备",
+		"动静脉采血针及连接件",
+		"动静脉穿刺器",
+		"动脉瘤夹",
+		"动态血糖/葡萄糖监测设备",
+		"短波治疗仪",
+		"耳鼻喉植入物",
+		"耳内假体",
+		"耳声发射仪",
+		"耳声阻抗测量仪",
+		"二氧化碳吸收器",
+		"反光器具",
+		"防护服",
+		"防护口罩",
+		"防护器具",
+		"防龋材料",
+		"防散射滤线栅",
+		"防压疮垫",
+		"放射免疫γ计数器",
+		"放射性层析扫描装置",
+		"放射性核素标本测定装置",
+		"放射性核素成像辅助设备",
+		"放射性核素成像设备",
+		"放射性核素骨密度测量设备",
+		"放射性核素扫描装置",
+		"放射性核素诊断设备",
+		"放射性粒籽防护植入器",
+		"放射性粒籽植入治疗系统",
+		"放射治疗辅助软件",
+		"放射治疗患者摆位系统",
+		"放射治疗患者用固定装置",
+		"放射治疗激光定位系统",
+		"放射治疗计划系统软件",
+		"放射治疗模拟及图像引导系统",
+		"放射治疗模拟系统",
+		"放射治疗配套器械",
+		"放射治疗设备",
+		"放射治疗用X射线图像引导系统",
+		"放射治疗准直限束装置",
+		"非血管内导管",
+		"非血管内导管充盈装置",
+		"非血管内输液器械",
+		"非血管支架",
+		"肺功能测试设备",
+		"分离控制盒",
+		"分离钳",
+		"分流栓",
+		"分子生物学分析设备",
+		"粪便分析仪器",
+		"封堵球囊",
+		"缝合针",
+		"孵育器",
+		"浮针",
+		"辅助生殖穿刺取卵/取精针",
+		"辅助生殖导管",
+		"辅助生殖器械",
+		"辅助生殖微型工具",
+		"辅助生殖专用仪器",
+		"辅助位听觉调控设备",
+		"辅助位听觉设备",
+		"负压引流封闭膜",
+		"负压引流海绵",
+		"负压引流器及组件",
+		"负压治疗设备",
+		"妇产科测量、监护设备",
+		"妇产科承载器械",
+		"妇产科手术器械",
+		"妇产科用刀",
+		"妇产科用剪",
+		"妇产科用扩张器、牵开器",
+		"妇产科用镊、夹、钩、针",
+		"妇产科用钳",
+		"妇产科诊断器械",
+		"妇产科治疗器械",
+		"妇科剥离器械",
+		"妇科采样器械",
+		"妇科超声诊断设备",
+		"妇科假体器械",
+		"妇科检查器械",
+		"妇科内窥镜",
+		"妇科手术/检查床",
+		"妇科物理治疗器械",
+		"妇科压板",
+		"附件、耗材",
+		"复合内窥镜",
+		"复合树脂",
+		"复合体",
+		"富血小板血浆制备器",
+		"腹膜透析辅助设备",
+		"腹膜透析器具",
+		"腹膜透析设备",
+		"腹水超滤浓缩回输设备",
+		"伽玛射束远距离治疗机",
+		"伽玛射线探测装置",
+		"伽玛照相机",
+		"钙盐类骨填充植入物",
+		"盖髓材料",
+		"干化学尿液分析仪器",
+		"干热消毒灭菌设备",
+		"干眼检测仪",
+		"肛瘘塞",
+		"肛门镜",
+		"高频/射频手术设备及附件",
+		"高频/射频用电极及导管",
+		"高频呼吸机",
+		"高频手术设备",
+		"高频治疗设备",
+		"高强度超声治疗设备",
+		"隔离敷料",
+		"隔离护罩",
+		"隔离及赋形材料",
+		"隔离衣帽",
+		"根管充填封闭材料",
+		"根管预备辅助材料",
+		"攻丝用锥",
+		"供氧、排氧器",
+		"宫内节育器及取放器械",
+		"宫腔负压吸引设备及附件",
+		"骨把持器",
+		"骨钩",
+		"骨及组织用剪",
+		"骨接合植入物",
+		"骨锯",
+		"骨科动力手术设备",
+		"骨科内窥镜用刀",
+		"骨科内窥镜用刮匙",
+		"骨科内窥镜用剪",
+		"骨科内窥镜用钳",
+		"骨科其他手术器械",
+		"骨科牵引床及配件",
+		"骨科手术体位固定架",
+		"骨科填充和修复材料",
+		"骨科用刀",
+		"骨科用钩",
+		"骨科用刮",
+		"骨科用剪",
+		"骨科用锯",
+		"骨科用钳",
+		"骨科用有源器械",
+		"骨科用凿",
+		"骨科用针",
+		"骨科用锥",
+		"骨科用钻",
+		"骨科组织保护器具",
+		"骨蜡",
+		"骨水泥定型模具",
+		"骨水泥器械",
+		"骨填充及修复材料",
+		"骨凿",
+		"骨折复位器",
+		"固定针",
+		"固位器",
+		"固位桩",
+		"刮痧器具",
+		"刮匙",
+		"关节镜配套工具",
+		"关节外科辅助器械",
+		"关节训练设备",
+		"关节置换植入物",
+		"灌注导管",
+		"光动力激光治疗设备",
+		"光动力治疗设备",
+		"光面或带螺纹的金属骨固定紧固件",
+		"光相干断层成像系统",
+		"光学成像诊断设备",
+		"光学定位引导系统",
+		"光学内窥镜",
+		"光学相干断层扫描仪",
+		"光治疗设备",
+		"光治疗设备附件",
+		"硅胶环扎带",
+		"滚针",
+		"过氧化氢灭菌器",
+		"海水鼻腔清洗液",
+		"毫米波治疗设备",
+		"合拢器",
+		"核酸分子杂交仪器",
+		"核酸扩增分析仪器",
+		"核酸扩增仪器",
+		"核酸提取纯化仪",
+		"颌面部赝复及修复重建材料及制品",
+		"颌面固定植入物",
+		"红外热像仪",
+		"红外线乳腺诊断仪",
+		"红细胞沉降仪器",
+		"喉罩",
+		"呼气流量测量设备",
+		"呼吸、麻醉、急救设备辅助装置",
+		"呼吸、麻醉用管路、面罩",
+		"呼吸道用吸引导管",
+		"呼吸功能及气体分析测定装置",
+		"呼吸管路",
+		"呼吸管路辅助器械",
+		"呼吸门控系统",
+		"呼吸面罩",
+		"呼吸热量监测设备",
+		"呼吸设备",
+		"呼吸系统过滤器",
+		"呼吸训练器",
+		"呼吸压力测量设备",
+		"化学发光免疫分析仪器",
+		"化学消毒灭菌设备",
+		"踝关节假体",
+		"环柄注射器",
+		"环氧乙烷灭菌器",
+		"患者体位固定装置",
+		"患者位置固定辅助器械",
+		"患者运送隔离器械",
+		"患者转运器械",
+		"活检枪",
+		"活检针",
+		"基础通用辅助器械",
+		"基台定制材料",
+		"基台及附件",
+		"基因测序仪器",
+		"激光采血仪",
+		"激光手术设备",
+		"激光手术设备及附件",
+		"激光治疗设备",
+		"急救和转运用呼吸机",
+		"急救设备",
+		"急救毯",
+		"棘突植入物",
+		"脊柱外科辅助器械",
+		"脊柱植入物",
+		"脊柱椎板间固定系统",
+		"脊柱椎弓根系统",
+		"脊柱椎体间固定/置换系统",
+		"计数板",
+		"计算机辅助诊断/分析软件",
+		"加压治疗设备",
+		"夹板及固定带",
+		"夹持、固定器械",
+		"夹持/复位用钳",
+		"夹子装置",
+		"家用呼吸机",
+		"家用呼吸支持设备",
+		"甲醛灭菌器",
+		"间接免疫荧光分析仪器",
+		"肩关节假体",
+		"监护软件",
+		"监护设备",
+		"检验及其他辅助设备",
+		"简易转移器械",
+		"胶带",
+		"胶囊内窥镜姿态控制器",
+		"胶囊式内窥镜系统",
+		"胶片观察装置",
+		"胶片扫描仪",
+		"角膜地形图仪",
+		"角膜共焦显微镜",
+		"角膜基质环",
+		"角膜基质片",
+		"角膜内皮细胞显微镜",
+		"矫治器具及附件",
+		"接触镜",
+		"接触镜护理产品",
+		"洁净工作台",
+		"洁净屏",
+		"洁治器具",
+		"结扎手术器械",
+		"截骨用刀",
+		"介入术用骨锥",
+		"金属固定环扎装置",
+		"金属髓内装置",
+		"金属填充物",
+		"紧固、支撑工具",
+		"近距离后装治疗设备",
+		"经鼻肠营养导管",
+		"经皮肠营养导管",
+		"精子分析仪器",
+		"静磁场治疗器具",
+		"静电贴敷器具",
+		"静脉尿路造影腹压器",
+		"静脉输液针",
+		"静脉血样采血管",
+		"灸疗器具",
+		"灸疗设备",
+		"决策支持软件",
+		"菌斑/龋齿指示剂",
+		"开口器械",
+		"开口用锥",
+		"康复训练床",
+		"康复训练软件",
+		"抗鼻腔过敏凝胶",
+		"可吸收缝合线",
+		"可吸收外科防粘连敷料",
+		"可吸收外科敷料",
+		"可吸收外科止血材料",
+		"口腔X射线机",
+		"口腔车针、钻",
+		"口腔成像辅助器具",
+		"口腔成像设备",
+		"口腔充填修复材料",
+		"口腔分离牵开用具",
+		"口腔隔离器具",
+		"口腔洁治清洗设备及附件",
+		"口腔溃疡、组织创面愈合治疗辅助材料",
+		"口腔麻醉推注设备",
+		"口腔清洗器具",
+		"口腔手术刀、凿",
+		"口腔手术剪",
+		"口腔义齿制作材料",
+		"口腔用镜",
+		"口腔用镊、夹",
+		"口腔用钳",
+		"口腔照明设备",
+		"口腔针",
+		"口腔诊察器具",
+		"口腔诊察设备",
+		"口腔正畸材料及制品",
+		"口腔植入及组织重建材料",
+		"口腔治疗辅助材料",
+		"口腔治疗器具",
+		"口腔治疗设备",
+		"口腔注射用具",
+		"口腔综合治疗设备配件",
+		"口咽/鼻咽通气道",
+		"叩诊锤",
+		"髋关节假体",
+		"扩孔用刀",
+		"扩髓器",
+		"扩髓用钻",
+		"扩张导管",
+		"扩张器",
+		"扩张钳",
+		"拉钩",
+		"蜡",
+		"蓝光治疗设备",
+		"泪道管",
+		"泪点塞",
+		"冷冻手术设备",
+		"冷冻手术设备及附件",
+		"冷冻消融针及导管",
+		"离心泵泵头",
+		"离心式血液成分分离器",
+		"力疗设备/器具",
+		"连接阀",
+		"连接器套筒",
+		"连续性血液净化设备",
+		"临时充填材料",
+		"临时起搏电极导线",
+		"临时起搏器",
+		"流式点阵仪器",
+		"流式细胞分析仪器",
+		"流式细胞术样本裂解仪",
+		"漏斗胸成形系统",
+		"颅骨夹/锁",
+		"颅骨矫形器械",
+		"颅脑外引流收集装置",
+		"颅内弹簧圈系统",
+		"颅内动脉瘤血流导向装置",
+		"颅内栓塞器械",
+		"颅内支架系统",
+		"麻醉储气囊",
+		"麻醉穿刺针",
+		"麻醉废气吸附器",
+		"麻醉机",
+		"麻醉面罩",
+		"麻醉气体净化传递和收集系统",
+		"麻醉器械",
+		"麻醉蒸发器",
+		"埋线针",
+		"脉搏血氧测量设备",
+		"脉搏血氧传感器",
+		"酶联免疫分析仪器",
+		"泌尿、消化动力学测量、分析设备",
+		"泌尿X射线机",
+		"免缝闭合器械",
+		"免疫层析分析仪器",
+		"免疫分析设备",
+		"免疫分析一体机",
+		"免疫散射浊度分析仪器",
+		"免疫印迹仪器",
+		"模型材料",
+		"末梢采血管",
+		"末梢采血针",
+		"末梢血采集容器",
+		"囊袋张力环",
+		"囊袋张力环植入器械",
+		"脑磁图设备",
+		"脑积水分流器及组件",
+		"内窥镜插入形状观测系统",
+		"内窥镜冲洗吸引器",
+		"内窥镜辅助用品",
+		"内窥镜功能供给装置",
+		"内窥镜膨腔泵",
+		"内窥镜气囊控制器",
+		"内窥镜切口牵开保护器",
+		"内窥镜取样针",
+		"内窥镜润滑剂",
+		"内窥镜摄像系统",
+		"内窥镜手术用有源设备",
+		"内窥镜送气装置",
+		"内窥镜先端帽",
+		"内窥镜咬口、套管",
+		"内窥镜用剥离器",
+		"内窥镜用导引器",
+		"内窥镜用分离钳",
+		"内窥镜用给物器",
+		"内窥镜用钩",
+		"内窥镜用活检袋",
+		"内窥镜用剪",
+		"内窥镜用冷光源",
+		"内窥镜用气囊导管",
+		"内窥镜用气囊扩张器",
+		"内窥镜用器械钳",
+		"内窥镜用牵开器",
+		"内窥镜用取石器械",
+		"内窥镜用取石球囊导管",
+		"内窥镜用取样钳",
+		"内窥镜用套扎器",
+		"内窥镜用推结器",
+		"内窥镜用吻",
+		"内窥镜用细胞刷",
+		"内窥镜用异物钳",
+		"内窥镜用组织刮匙",
+		"内窥镜用组织钳",
+		"尿液分析系统",
+		"尿液及其他样本分析设备",
+		"尿液有形成分分析仪器",
+		"颞下颌关节假体",
+		"凝胶",
+		"凝血分析仪器",
+		"排气针",
+		"排线器",
+		"排龈材料",
+		"刨骨器",
+		"培养与孵育设备",
+		"配套工具",
+		"盆底肌肉训练设备",
+		"皮肤针",
+		"皮内针",
+		"平衡测试设备",
+		"平衡训练设备",
+		"屏障式避孕器械",
+		"其他测量、分析设备",
+		"其他化学消毒灭菌器",
+		"其他口腔材料",
+		"其他手术设备",
+		"其他体液分析仪器",
+		"其他体液形态学分析仪器",
+		"其他物理治疗设备",
+		"其他眼科治疗和手术设备",
+		"其他样本采集器具",
+		"其他医用分析设备",
+		"其他转移器械",
+		"其它器械",
+		"起搏系统分析设备",
+		"气道过敏反应测试设备",
+		"气动急救复苏器",
+		"气管插管用喉镜",
+		"气管内插管/气管套管",
+		"气囊式体外反搏装置",
+		"气体测定设备",
+		"器械夹",
+		"器械剪",
+		"器械镊",
+		"器械钳",
+		"牵开器",
+		"牵引器",
+		"牵引器具",
+		"牵引钳",
+		"牵引针",
+		"牵引治疗设备",
+		"腔静脉滤器",
+		"腔静脉滤器回收装置",
+		"强脉冲光治疗设备",
+		"敲拔器械",
+		"切/取骨钻",
+		"切割球囊",
+		"切割针",
+		"青光眼引流装置",
+		"清洁器",
+		"清洗、灌洗、吸引、给药器械",
+		"清洗消毒器",
+		"清洗消毒设备",
+		"球囊扩张导管",
+		"球囊扩张导管用球囊充压装置",
+		"取、植皮设备",
+		"取片机",
+		"取样器械",
+		"取样钳",
+		"龋齿探测设备",
+		"去冠器",
+		"热传导治疗设备",
+		"热辐射灭菌器",
+		"热辐射治疗设备",
+		"热交换设备",
+		"热空气灭菌器",
+		"热空气消毒器",
+		"热湿交换器",
+		"人工玻璃体球囊",
+		"人工复苏器",
+		"人工肝设备",
+		"人工晶状体",
+		"人工晶状体、人工玻璃体植入器械",
+		"人工颅骨",
+		"人工心脏瓣膜及瓣膜修复器械",
+		"人工血管",
+		"人体阻抗测量、分析设备",
+		"认知言语视听障碍康复设备",
+		"认知障碍康复设备",
+		"韧带手术器械",
+		"妊娠控制器械",
+		"乳房植入物",
+		"乳腺X射线机",
+		"软骨整形器械",
+		"软组织扩张器",
+		"润滑剂及载体",
+		"三棱针",
+		"扫描图像分析系统",
+		"色谱柱",
+		"筛查、分析软件",
+		"烧烫伤浸浴装置",
+		"舌肌康复训练器",
+		"射频浅表治疗设备",
+		"射频热疗设备",
+		"射频消融设备",
+		"射频消融设备用灌注泵",
+		"射线束扫描测量系统",
+		"摄影X射线机",
+		"神经调控程控设备",
+		"神经调控充电设备",
+		"神经调控设备",
+		"神经和肌肉刺激器用电极",
+		"神经和心血管手术器械-剥离器",
+		"神经和心血管手术器械-冲吸器",
+		"神经和心血管手术器械-穿刺导引器",
+		"神经和心血管手术器械-刀",
+		"神经和心血管手术器械-钩",
+		"神经和心血管手术器械-刮匙",
+		"神经和心血管手术器械-夹",
+		"神经和心血管手术器械-剪",
+		"神经和心血管手术器械-镊",
+		"神经和心血管手术器械-其他器械",
+		"神经和心血管手术器械-牵开器",
+		"神经和心血管手术器械-钳",
+		"神经和心血管手术器械-心血管介入器械",
+		"神经和心血管手术器械-针",
+		"神经监护设备",
+		"神经内/外科植入物",
+		"神经修复材料",
+		"肾及甲状腺功能测量设备",
+		"渗透压测定仪器",
+		"生化分析设备",
+		"生化分析仪器",
+		"生化免疫分析仪器",
+		"生理参数分析测量设备",
+		"生理参数诱发诊断设备",
+		"生理信号处理软件",
+		"生物安全柜",
+		"生物反馈治疗设备",
+		"生物芯片分析仪器",
+		"生殖道分泌物分析仪器",
+		"施夹器",
+		"施源器",
+		"湿热消毒灭菌设备",
+		"石膏拆除器械",
+		"石膏锯",
+		"石膏切割器具",
+		"石膏切割用刀",
+		"食道气管插管",
+		"试模",
+		"视功能检查设备和器具",
+		"视光设备和器具",
+		"视觉康复设备",
+		"视觉治疗设备",
+		"手柄",
+		"手部防护用品",
+		"手动病床",
+		"手动测量器械",
+		"手动测量用器械",
+		"手动防压疮垫",
+		"手动手术台",
+		"手动推车、担架等器械",
+		"手动诊疗台及诊疗椅",
+		"手术叉",
+		"手术锉",
+		"手术单",
+		"手术刀",
+		"手术导航、控制系统",
+		"手术导航系统",
+		"手术定位系统",
+		"手术动力系统",
+		"手术钩",
+		"手术刮匙",
+		"手术环",
+		"手术计划软件",
+		"手术锯",
+		"手术控制系统",
+		"手术膜",
+		"手术器械-剥离器",
+		"手术器械-冲吸器",
+		"手术器械-穿刺导引器",
+		"手术器械-钩",
+		"手术器械-刮匙",
+		"手术器械-夹",
+		"手术器械-剪",
+		"手术器械-镊",
+		"手术器械-其他器械",
+		"手术器械-牵开器",
+		"手术器械-钳",
+		"手术器械-吻合器械及材料",
+		"手术器械-针",
+		"手术室感染控制用品",
+		"手术室用衣帽",
+		"手术台",
+		"手术显微镜",
+		"手术针",
+		"输卵管封闭器械",
+		"输尿管支架",
+		"输送导引器",
+		"输血器",
+		"输氧面罩",
+		"输液、输血用连接件及附件",
+		"输液泵",
+		"输液袋",
+		"输液辅助电子设备",
+		"输液连接管路",
+		"输液器",
+		"输液信息采集系统",
+		"输液用放气针",
+		"术中牵引架及配件",
+		"数据处理软件",
+		"水刀",
+		"水门汀",
+		"睡眠呼吸监测设备",
+		"睡眠呼吸暂停治疗设备",
+		"塑形工具",
+		"酸碱度检测设备",
+		"酸蚀剂",
+		"酸性氧化电位水生成器",
+		"探针",
+		"套扎器",
+		"套针外周导管",
+		"体表电极",
+		"体表器械固定装置",
+		"体表色素测量设备",
+		"体外除颤设备",
+		"体外辅助生殖用液",
+		"体外声音处理器",
+		"体外心肺支持辅助系统",
+		"体外心肺支持用升温仪",
+		"体外引流、吸引管",
+		"体外诊断类软件",
+		"体温测量设备",
+		"听觉检查音叉",
+		"听觉康复设备",
+		"听力计",
+		"听小骨假体",
+		"听诊器",
+		"通气辅助器械",
+		"通条",
+		"同种异体骨修复材料",
+		"头皮夹",
+		"透视X射线机",
+		"透视摄影X射线机",
+		"透视摄影床",
+		"透视荧光屏",
+		"图像分析仪器",
+		"图像扫描仪器",
+		"图像显示、处理、传输及打印设备",
+		"图像显示处理工作站",
+		"涂抹及吸液材料",
+		"推结器",
+		"托槽",
+		"脱敏剂",
+		"脱细胞皮肤",
+		"脱细胞真皮基质",
+		"外固定及牵引器械",
+		"外固定支架",
+		"外科补片/外科修补网",
+		"外科非织造布敷料",
+		"外科海绵敷料",
+		"外科口罩",
+		"外科手套",
+		"外科织造布类敷料",
+		"腕关节假体",
+		"微波手术设备",
+		"微波治疗设备",
+		"微创骨导引器",
+		"微创入路装置",
+		"微导管",
+		"微量元素分析仪器",
+		"微生物比浊仪器",
+		"微生物分析设备",
+		"微生物鉴定药敏分析仪器",
+		"微生物鉴定仪器",
+		"微生物培养监测仪器",
+		"微生物药敏培养监测仪器",
+		"微生物质谱鉴定仪器",
+		"微栓过滤器",
+		"微循环显微镜",
+		"胃肠X射线检查用品",
+		"胃肠超声显像粉",
+		"胃隐血采集器具",
+		"温热治疗设备/器具",
+		"温针治疗设备",
+		"吻合器",
+		"无创血流分析设备",
+		"无创血压测量设备",
+		"无创血压袖带",
+		"无菌接管机",
+		"无菌注射器",
+		"无源患者手术位置固定辅助器械",
+		"无源输注泵",
+		"无源止血带",
+		"无源止血器",
+		"无针注射器",
+		"五官科检查镜",
+		"物理降温设备",
+		"雾化面罩",
+		"雾化设备/雾化装置",
+		"吸潮纸尖",
+		"吸入镇痛装置",
+		"吸氧头罩",
+		"吸引器",
+		"膝关节假体",
+		"洗板机",
+		"细菌内毒素/真菌葡聚糖检测仪器",
+		"限束装置",
+		"小针刀",
+		"携带式X射线机",
+		"心电测量、分析设备",
+		"心电导联线",
+		"心肺复苏设备",
+		"心肺转流监测设备",
+		"心肺转流器具",
+		"心肺转流设备",
+		"心肺转流用泵",
+		"心肺转流用管路及接头",
+		"心血管补片",
+		"心血管功能检测设备",
+		"心血管栓塞器械",
+		"心血管植入物",
+		"心脏电生理标测设备",
+		"心脏封堵器",
+		"心脏封堵器输送线缆",
+		"心脏封堵器装载器",
+		"心脏节律管理程控设备",
+		"心脏节律管理设备",
+		"心脏停跳液",
+		"心脏停跳液灌注器",
+		"芯钻",
+		"形态学分析前样本处理设备",
+		"胸骨捆扎/抓扣固定系统",
+		"胸腔引流装置",
+		"修补固定器",
+		"修整用钻",
+		"悬吊、支撑装置",
+		"穴位磁疗器具",
+		"穴位电刺激设备",
+		"穴位激光刺激设备",
+		"穴位微波刺激设备",
+		"穴位压力刺激器具",
+		"血袋",
+		"血管缝合装置",
+		"血管内回收装置",
+		"血管内假体",
+		"血管内留置针",
+		"血管内皮功能测试设备",
+		"血管内输液器械",
+		"血管显像设备",
+		"血管硬度测量设备",
+		"血管造影X射线机",
+		"血管支架",
+		"血浆病毒灭活设备",
+		"血浆管路",
+		"血流变分析仪器",
+		"血气分析仪器",
+		"血栓抽吸导管",
+		"血糖及血糖相关参数分析仪器",
+		"血细胞处理设备",
+		"血细胞分析前样本处理仪器",
+		"血细胞分析仪器",
+		"血细胞形态分析仪器",
+		"血小板分析仪器",
+		"血小板振荡器",
+		"血型分析仪器",
+		"血液采集卡",
+		"血液成分分离设备",
+		"血液分离、处理、贮存器具",
+		"血液分离、处理、贮存设备",
+		"血液辐照设备",
+		"血液灌流器具",
+		"血液灌流设备",
+		"血液净化辅助器具",
+		"血液净化及腹膜透析器具",
+		"血液净化及腹膜透析设备",
+		"血液浓缩器",
+		"血液融化设备",
+		"血液透析辅助设备",
+		"血液透析器具",
+		"血液透析设备",
+		"血液学分析设备",
+		"血脂分离器具",
+		"血脂分离设备",
+		"熏蒸治疗设备",
+		"循环肿瘤细胞分析仪器",
+		"压力绷带",
+		"压力蒸汽灭菌器",
+		"压迫器",
+		"压器",
+		"压舌板",
+		"压缩钳",
+		"牙本质测量设备",
+		"牙齿漂白材料",
+		"牙科锉",
+		"牙科分离剂",
+		"牙科膜片",
+		"牙科手机及附件",
+		"牙科用椅",
+		"牙科治疗机",
+		"牙髓活力测试剂",
+		"牙髓活力测试设备",
+		"牙挺",
+		"牙托梗",
+		"牙种植体",
+		"牙周袋探测设备",
+		"牙周塞治剂",
+		"氩保护气凝设备",
+		"延长管",
+		"言语障碍测量设备",
+		"言语障碍康复设备",
+		"研磨抛光材料",
+		"眼科测量诊断设备和器具",
+		"眼科超声手术设备",
+		"眼科超声诊断设备",
+		"眼科激光治疗设备",
+		"眼科矫治和防护器具",
+		"眼科冷冻治疗设备",
+		"眼科内窥镜及附件",
+		"眼科无源手术器械",
+		"眼科诊断辅助器具",
+		"眼科植入物及辅助器械",
+		"眼科治疗和手术辅助器具",
+		"眼科治疗和手术设备、辅助器具",
+		"眼内填充物",
+		"眼贴",
+		"眼用剥离器",
+		"眼用铲",
+		"眼用冲吸器",
+		"眼用刀",
+		"眼用钩",
+		"眼用刮匙",
+		"眼用夹",
+		"眼用剪",
+		"眼用锯",
+		"眼用扩张器",
+		"眼用镊",
+		"眼用牵开器",
+		"眼用钳",
+		"眼用凿",
+		"眼用粘弹剂",
+		"眼用针",
+		"眼用钻",
+		"眼震电图设备",
+		"厌氧培养系统",
+		"验光设备和器具",
+		"氧合器",
+		"氧气发生器",
+		"氧气吸入器",
+		"样本处理系统",
+		"样本分离设备",
+		"遥测和中央监护设备",
+		"遥测监护设备",
+		"咬骨钳",
+		"咬合关系记录/检查材料",
+		"咬口",
+		"药物导入设备",
+		"药液用转移、配药器具",
+		"液体闪烁计数器",
+		"液相色谱分析仪器",
+		"医护人员防护用品",
+		"医学显微影像分析软件",
+		"医学影像处理软件",
+		"医学影像存储与传输系统软件",
+		"医用X射线治疗设备",
+		"医用病床",
+		"医用导管夹",
+		"医用电动吸引器械",
+		"医用电子加速器",
+		"医用防护衬垫",
+		"医用分子筛制氧机",
+		"医用分子筛制氧系统",
+		"医用妇科护垫",
+		"医用供气排气相关设备",
+		"医用光学放大器具",
+		"医用呼吸道湿化器",
+		"医用激光光纤",
+		"医用空气压缩机",
+		"医用离心机",
+		"医用轮椅车",
+		"医用膜分离制氧机",
+		"医用膜分离制氧系统",
+		"医用内窥镜",
+		"医用培养/恒温箱",
+		"医用气体报警系统",
+		"医用气体汇流排",
+		"医用气体混合器",
+		"医用轻离子治疗系统",
+		"医用清洗器",
+		"医用人工驱动吸引器械",
+		"医用射线防护设备",
+		"医用射线防护用具",
+		"医用射线防护装置",
+		"医用生物防护设备",
+		"医用图像打印机",
+		"医用显微镜",
+		"医用压缩气体供应系统",
+		"医用氧舱",
+		"医用婴儿床",
+		"医用增感屏",
+		"医用制氧设备",
+		"医用中心吸引系统",
+		"胰岛素泵",
+		"胰岛素泵用储液器",
+		"胰岛素泵用皮下输液器",
+		"移动式C形臂X射线机",
+		"以负压源或压力源为动力吸引器械",
+		"义齿试用材料",
+		"义齿用高分子材料及制品",
+		"义齿用金属材料及制品",
+		"义齿用陶瓷材料及制品",
+		"义眼片",
+		"义眼台",
+		"异物钳",
+		"阴道镜",
+		"阴道填塞材料",
+		"阴道洗涤器/给药器",
+		"阴茎假体",
+		"银汞合金",
+		"引流袋(容器)/收集袋(容器)、粪便管理器械",
+		"引流袋、粪便管理器械",
+		"引流导管",
+		"印模材料",
+		"婴儿辐射保暖台",
+		"婴儿光疗防护眼罩",
+		"婴儿培养箱",
+		"荧光免疫分析仪器",
+		"影像板",
+		"影像处理软件",
+		"影像记录介质",
+		"硬膜外麻醉导管",
+		"硬脑膜补片",
+		"永磁型磁共振成像系统",
+		"幽门螺旋杆菌分析仪器",
+		"有创颅内压设备",
+		"有创血压传感器",
+		"有源止血器",
+		"与非血管内导管配套用体外器械",
+		"预充式导管冲洗器",
+		"预处理剂",
+		"远程监护设备",
+		"远端保护器",
+		"运动康复训练器械",
+		"运动损伤软组织修复重建及置换植入物",
+		"运动损伤软组织修复重建植入物",
+		"运动损伤软组织置换植入物",
+		"造口、疤痕护理用品",
+		"造口护理及辅助器械",
+		"造影导管",
+		"造影剂注射装置",
+		"造影球囊",
+		"摘除镊",
+		"粘堵剂",
+		"粘合剂",
+		"粘接剂",
+		"针灸针",
+		"真耳测试仪",
+		"真空负压机",
+		"诊察辅助器械",
+		"诊断X射线机",
+		"诊疗台",
+		"振动训练设备",
+		"蒸汽消毒器",
+		"整形及普通外科植入物",
+		"整形填充材料",
+		"整形用注射填充物",
+		"正电子发射断层成像设备",
+		"正电子发射及X射线计算机断层成像系统",
+		"正电子发射及磁共振成像系统",
+		"正畸材料处理器械",
+		"正畸弹簧",
+		"正畸弹性体附件",
+		"正畸基托聚合物",
+		"正畸丝",
+		"支气管堵塞器",
+		"支气管内活瓣",
+		"肢体数字化体层摄影X射线机",
+		"直肠管",
+		"直流电治疗设备",
+		"植骨器械",
+		"植皮器",
+		"植入取出工具",
+		"植入式电极导线补件",
+		"植入式电极导线适配工具",
+		"植入式电极导线移除工具",
+		"植入式封堵工具",
+		"植入式给药器械",
+		"植入式神经刺激电极",
+		"植入式神经刺激器",
+		"植入式位听觉设备",
+		"植入式心律转复除颤器",
+		"植入式心脏除颤电极导线",
+		"植入式心脏起搏电极导线",
+		"植入式心脏起搏器",
+		"植入式心脏事件监测设备",
+		"植入式心脏收缩力调节设备",
+		"植入式循环辅助设备",
+		"植入式药物输注设备",
+		"植入物或石膏用剪",
+		"植入物塑形用钳",
+		"植入性止鼾装置",
+		"止血夹",
+		"止血器具",
+		"止血钳",
+		"指关节假体",
+		"质谱检测系统",
+		"治疗辅助器具",
+		"治疗呼吸机",
+		"治疗机用X射线管",
+		"治疗计划软件",
+		"中心静脉导管",
+		"中央监护系统",
+		"中医器具",
+		"中医治疗设备",
+		"种植辅助材料",
+		"种植体安装辅助器械",
+		"种植体密封材料",
+		"种植支抗",
+		"肘关节假体",
+		"煮沸消毒器",
+		"助产器械",
+		"助讲器",
+		"助视器",
+		"助听器",
+		"助行器械",
+		"贮血滤血器",
+		"注射、穿刺器械",
+		"注射泵",
+		"注射器辅助推动装置",
+		"注射针",
+		"铸造包埋材料",
+		"椎间盘假体",
+		"椎间融合器",
+		"椎体成形器械",
+		"椎体后缘处理器",
+		"准直限束装置",
+		"子宫操纵器",
+		"子宫输卵管造影、输卵管通液器械",
+		"紫外线消毒器",
+		"紫外线消毒设备",
+		"紫外治疗设备",
+		"自动给药系统",
+		"自动加样系统",
+		"自体血液处理器具",
+		"自体血液回收设备",
+		"足部隔离用品",
+		"足跟采血器",
+		"组合功能融合成像器械",
+		"组织工程生物羊膜",
+		"组织工程支架材料",
+		"组织剪",
+		"组织镊",
+		"组织钳",
+		"组织用钳",
+		"钻孔用钻",
+	}
+	it := sess.DB(save_mgo.DbName).C("zktest_bdw_words").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		productArr = append(productArr, qu.ObjToString(tmp["product_name"]))
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("产品名称~", len(productArr))
+
+	total = 0
+	it = sess.DB(save_mgo.DbName).C("zktest_purchasing_3_data").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		//是否存在标的物
+		p_list := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			p_list = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				p_list = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+		new_p_list := []map[string]interface{}{}
+		if len(p_list) > 0 { //筛选有效信息
+			for _, v := range p_list {
+				itemname := qu.ObjToString(v["itemname"])
+				isExist := false
+				for _, v := range productArr {
+					product_name := qu.ObjToString(v)
+					if strings.Contains(itemname, product_name) ||
+						strings.Contains(product_name, itemname) {
+						isExist = true
+						break
+					}
+				}
+				if isExist {
+					new_p_list = append(new_p_list, v)
+				}
+			}
+		}
+		delete(tmp, "purchasinglist")
+		if len(new_p_list) > 0 {
+			tmp["purchasinglist"] = new_p_list
+		}
+
+		save_mgo.Save("zktest_purchasing_3_data_new", tmp)
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ... ")
+}
+
+// 补标的物的数据
+func repairWinnerBdwData() {
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_purchasing_3_data").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		tmpid := BsonTOStringId(tmp["_id"])
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, "~", tmpid)
+		}
+		data := *elastic.GetByIdField("bidding", "bidding", tmpid, `"area","city","buyer","budget"`)
+		if data != nil && len(data) > 0 {
+			save_mgo.UpdateById("zktest_purchasing_3_data", tmpid, map[string]interface{}{
+				"$set": data,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+}
+
+func exportProductWinnerData() {
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("20211223test1").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		company := qu.ObjToString(tmp["_id"])
+		query := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}},{"term":{"winner":"%s"}}]}}}},"_source":["bidamount","_id","href","purchasinglist"],"size":"1000000"}`, company)
+		if total%100 == 0 {
+			log.Debug("cur index ", query)
+		}
+
+		resArr := *elastic.GetNoLimit("bidding", "bidding", query)
+		log.Debug("第", total, "组~查询~", len(resArr))
+		if len(resArr) > 0 {
+			for _, v := range resArr {
+				tmpid := qu.ObjToString(v["_id"])
+				delete(v, "_id")
+				v["_id"] = StringTOBsonId(tmpid)
+				v["winner"] = company
+				v["jyhref"] = fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+				save_mgo.Save("zktest_purchasing_3_data", v)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// 处理-企业-金额数据-zktest_purchasing_1
+func dealWithQyBidData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_qy_product_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		company := qu.ObjToString(tmp["company"])
+		dataArr, _ := save_mgo.Find("zktest_purchasing_1", map[string]interface{}{"winner": company}, nil, map[string]interface{}{
+			"_id":            1,
+			"budget":         1,
+			"bidamount":      1,
+			"buyer":          1,
+			"purchasinglist": 1,
+			"site":           1,
+			"title":          1,
+			"href":           1,
+		})
+		if len(dataArr) > 0 {
+			for _, v := range dataArr {
+				tmpid := BsonTOStringId(v["_id"])
+				jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+				delete(v, "_id")
+				v["source_id"] = tmpid
+				v["company"] = company
+				v["jyhref"] = jyhref
+				save_mgo.Save("zktest_purchasing_1_data", v)
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// 处理-企业-标的物-金额数据-zktest_purchasing_2
+func dealWithQyBdwBidData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_qy_product_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		company := qu.ObjToString(tmp["company"])
+		productArr := []interface{}{}
+		if arr, ok := tmp["product"].(primitive.A); ok {
+			productArr = arr
+		} else {
+			if arr, ok := tmp["product"].([]interface{}); ok {
+				productArr = arr
+			}
+		}
+		dataArr, _ := save_mgo.Find("zktest_purchasing_2", map[string]interface{}{"winner": company}, nil, map[string]interface{}{
+			"_id":            1,
+			"purchasinglist": 1,
+			"bidamount":      1,
+			"href":           1,
+		})
+
+		if len(dataArr) > 0 {
+			save_data := dealWithProductEnable(productArr, dataArr)
+			if len(save_data) > 0 {
+				for _, v := range save_data {
+					tmpid := BsonTOStringId(v["_id"])
+					jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+					delete(v, "_id")
+					v["source_id"] = tmpid
+					v["company"] = company
+					v["jyhref"] = jyhref
+					save_mgo.Save("zktest_purchasing_2_data", v)
+				}
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// 有效产品数据-整理
+func dealWithProductEnable(productArr []interface{}, dataArr []map[string]interface{}) []map[string]interface{} {
+	save_data := []map[string]interface{}{}
+	for _, tmp := range dataArr {
+		p_list := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			p_list = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				p_list = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+
+		new_p_list := []map[string]interface{}{}
+		if len(p_list) > 0 { //筛选有效信息
+			for _, v := range p_list {
+				itemname := qu.ObjToString(v["itemname"])
+				isExist := false
+				for _, v := range productArr {
+					product_name := qu.ObjToString(v)
+					if strings.Contains(itemname, product_name) ||
+						strings.Contains(product_name, itemname) {
+						isExist = true
+						break
+					}
+				}
+
+				if isExist {
+					new_p_list = append(new_p_list, v)
+				}
+			}
+		}
+		delete(tmp, "purchasinglist")
+		if len(new_p_list) > 0 {
+			tmp["purchasinglist"] = new_p_list
+			save_data = append(save_data, tmp)
+		}
+	}
+	return save_data
+}
+
+// 处理企业数据-
+func dealWithNmpData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("nmp_qy").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		company := qu.ObjToString(tmp["company"])
+		product := []interface{}{}
+		dataArr, _ := save_mgo.Find("nmp_detail", map[string]interface{}{"reg_company": company}, nil, nil)
+		if len(dataArr) > 0 {
+			product = dealWithProductName(dataArr)
+		}
+		save_mgo.Save("zktest_qy_product_data", map[string]interface{}{
+			"company": company,
+			"product": product,
+		})
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ...")
+}
+func dealWithProductName(data []map[string]interface{}) []interface{} {
+	productArr := []interface{}{}
+	dict := map[string]interface{}{}
+	for _, v := range data {
+		product_name := qu.ObjToString(v["product_name"])
+		if dict[product_name] == nil {
+			productArr = append(productArr, product_name)
+			dict[product_name] = 1
+		}
+	}
+	return productArr
+}
+
+// 导出es数据标的物
+func exportAllPurchasingData() {
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	words := []string{}
+	//sess := save_mgo.GetMgoConn()
+	//defer save_mgo.DestoryMongoConn(sess)
+	//q,total:=map[string]interface{}{},0
+	//it := sess.DB(save_mgo.DbName).C("zktest_bdw_new_words").Find(&q).Iter()
+	//for tmp := make(map[string]interface{}); it.Next(&tmp);total++{
+	//	word := qu.ObjToString(tmp["product_name"])
+	//	if !strings.Contains(word,`"`) &&!strings.Contains(word,`\`) {
+	//		words = append(words,qu.ObjToString(tmp["product_name"]))
+	//	}
+	//	tmp = make(map[string]interface{})
+	//}
+	log.Debug("搜索词~", len(words))
+
+	total_1, total_2 := 0, 0
+	upsertArr_1, upsertArr_2 := [][]map[string]interface{}{}, [][]map[string]interface{}{}
+	for k, v := range words {
+
+		query_1 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing","title","detail"]}}]}}}},"size": "1000000","_source":{"exclude":["detail","filetext"]}}`, v)
+		query_2 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing"]}}]}}}},"size": "1000000","_source":{"exclude":["detail","filetext"]}}`, v)
+		resArr_1 := *elastic.GetNoLimit("bidding", "bidding", query_1)
+		resArr_2 := *elastic.GetNoLimit("bidding", "bidding", query_2)
+		num_1, num_2 := len(resArr_1), len(resArr_2)
+		total_1 += num_1
+		total_2 += num_2
+
+		for _, v := range resArr_1 {
+			tmpid := qu.ObjToString(v["_id"])
+			delete(v, "_id")
+			v["_id"] = StringTOBsonId(tmpid)
+			if len(upsertArr_1) >= 200 {
+				save_mgo.UpSertBulk("zktest_purchasing_1", upsertArr_1...)
+				upsertArr_1 = [][]map[string]interface{}{}
+			} else {
+				upsertArr_1 = append(upsertArr_1, []map[string]interface{}{
+					map[string]interface{}{
+						"_id": StringTOBsonId(tmpid),
+					},
+					v,
+				})
+			}
+		}
+
+		for _, v := range resArr_2 {
+			tmpid := qu.ObjToString(v["_id"])
+			delete(v, "_id")
+			if len(upsertArr_2) >= 200 {
+				save_mgo.UpSertBulk("zktest_purchasing_2", upsertArr_2...)
+				upsertArr_2 = [][]map[string]interface{}{}
+			} else {
+				upsertArr_2 = append(upsertArr_2, []map[string]interface{}{
+					map[string]interface{}{
+						"_id": StringTOBsonId(tmpid),
+					},
+					v,
+				})
+			}
+		}
+		if len(upsertArr_1) > 0 {
+			save_mgo.UpSertBulk("zktest_purchasing_1", upsertArr_1...)
+			upsertArr_1 = [][]map[string]interface{}{}
+		}
+		if len(upsertArr_2) > 0 {
+			save_mgo.UpSertBulk("zktest_purchasing_2", upsertArr_2...)
+			upsertArr_2 = [][]map[string]interface{}{}
+		}
+		log.Debug("第", k, "组", "~", v, "~查询量:", num_1, "~", num_2, "~总计:", total_1, total_2)
+	}
+
+	if len(upsertArr_1) > 0 {
+		save_mgo.UpSertBulk("zktest_purchasing_1", upsertArr_1...)
+	}
+	if len(upsertArr_2) > 0 {
+		save_mgo.UpSertBulk("zktest_purchasing_2", upsertArr_2...)
+	}
+
+	time.Sleep(10 * time.Second)
+	log.Debug("is over ... ...")
+}
+
+// 导出标的物-相关数据
+func exportNewPurchasingList() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"total": map[string]interface{}{
+			"$gt": 0,
+		},
+	}, 0
+	it_word := sess.DB(save_mgo.DbName).C("product_all").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it_word.Next(&tmp); total++ {
+		word := qu.ObjToString(tmp["product_name"])
+		wordsArr = append(wordsArr, word)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("准备搜索词完毕: ", total, len(wordsArr))
+
+	total, q = 0, map[string]interface{}{}
+	isExist, isUnExist := 0, 0
+
+	//写邮件
+	os.Remove("新整体统计.xlsx")
+	f := xlsx.NewFile()
+	sheet_1, _ := f.AddSheet("标的物存在")
+	sheet_2, _ := f.AddSheet("标的物不存在")
+	row_1 := sheet_1.AddRow()
+	row_2 := sheet_2.AddRow()
+
+	//存在
+	row_1.AddCell().Value = "标识"
+	row_1.AddCell().Value = "匹配词"
+	row_1.AddCell().Value = "产品名称"
+	row_1.AddCell().Value = "品牌"
+	row_1.AddCell().Value = "型号"
+	row_1.AddCell().Value = "单位"
+	row_1.AddCell().Value = "数量"
+	row_1.AddCell().Value = "单价"
+	row_1.AddCell().Value = "原文链接"
+	row_1.AddCell().Value = "剑鱼链接"
+
+	row_2.AddCell().Value = "标识"
+	row_2.AddCell().Value = "发布时间"
+	row_2.AddCell().Value = "标的内容"
+	row_2.AddCell().Value = "原文链接"
+	row_2.AddCell().Value = "剑鱼链接"
+
+	timeLayout := "2006-01-02"
+
+	it := sess.DB(save_mgo.DbName).C("bidding_all").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, "~", isExist, "~", isUnExist)
+		}
+		newArr := []map[string]interface{}{}
+		tmpid := qu.ObjToString(tmp["_id"])
+		publishtime := qu.Int64All(tmp["publishtime"])
+		pt_str := time.Unix(publishtime, 0).Format(timeLayout)
+		purchasing := qu.ObjToString(tmp["purchasing"])
+		href := qu.ObjToString(tmp["href"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			newArr = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				newArr = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+
+		if len(newArr) > 0 {
+			b, arr := dealWithPList(newArr)
+			if b {
+				isExist++
+				for k, v := range arr {
+					row_1 = sheet_1.AddRow()
+					for word, list_data := range v {
+						if k == 0 {
+							row_1.AddCell().Value = tmpid
+							row_1.AddCell().Value = word
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["itemname"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["brandname"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["model"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["unitname"])
+							row_1.AddCell().Value = fmt.Sprintf("%f", list_data["number"])
+							row_1.AddCell().Value = fmt.Sprintf("%f", list_data["unitprice"])
+							row_1.AddCell().Value = href
+							row_1.AddCell().Value = jyhref
+						} else {
+							row_1.AddCell().Value = ""
+							row_1.AddCell().Value = word
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["itemname"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["brandname"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["model"])
+							row_1.AddCell().Value = fmt.Sprintf("%s", list_data["unitname"])
+							row_1.AddCell().Value = fmt.Sprintf("%f", list_data["number"])
+							row_1.AddCell().Value = fmt.Sprintf("%f", list_data["unitprice"])
+							row_1.AddCell().Value = href
+							row_1.AddCell().Value = jyhref
+						}
+					}
+				}
+			} else {
+				isUnExist++
+				row_2 = sheet_2.AddRow()
+				row_2.AddCell().Value = tmpid
+				row_2.AddCell().Value = pt_str
+				row_2.AddCell().Value = purchasing
+				row_2.AddCell().Value = href
+				row_2.AddCell().Value = jyhref
+			}
+		} else {
+			isUnExist++
+			row_2 = sheet_2.AddRow()
+			row_2.AddCell().Value = tmpid
+			row_2.AddCell().Value = pt_str
+			row_2.AddCell().Value = purchasing
+			row_2.AddCell().Value = href
+			row_2.AddCell().Value = jyhref
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	err := f.Save("新整体统计.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+
+	log.Debug("is over ", total, "~", isExist, "~", isUnExist)
+
+}
+func dealWithPList(list []map[string]interface{}) (bool, []map[string]map[string]interface{}) {
+	isok := false
+	arr := []map[string]map[string]interface{}{}
+
+	for _, v := range list {
+		itemname := qu.ObjToString(v["itemname"])
+		for _, word := range wordsArr {
+			if strings.Contains(itemname, word) {
+				isok = true
+				arr = append(arr, map[string]map[string]interface{}{
+					word: v,
+				})
+			}
+		}
+	}
+
+	return isok, arr
+}
+
+func updateBidopenAddressData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_bidopenaddr_test").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		save_mgo.UpdateById("zktest_bidopenaddr_test", tmpid, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"jyhref": jyhref,
+			},
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+}
+func exportNewAddressData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("111111").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("curent index ", total)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := save_mgo.FindById("bidding", tmpid)
+		if data != nil && len(data) > 2 {
+			save_mgo.Save("1212121212", data)
+		} else {
+			data = save_mgo.FindById("bidding_back", tmpid)
+			if data != nil && len(data) > 2 {
+				save_mgo.Save("1212121212", data)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total)
+
+	return
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	query := `{"query":{"bool":{"must":[{"prefix":{"bidding.bidopenaddress":""}},{"term":{"bidding.area":"全国"}},{"range":{"bidding.comeintime":{"from":"1630425600"}}}],"must_not":[],"should":[]}},"_source":["_id"],"sort":[],"facets":{},"size":"5000"}`
+	arr := *elastic.Get("bidding", "bidding", query)
+	if len(arr) > 0 {
+		for _, v := range arr {
+			save_mgo.Save("111111", map[string]interface{}{
+				"_id": StringTOBsonId(qu.ObjToString(v["_id"])),
+			})
+		}
+	}
+	log.Debug("is over ", len(arr))
+}
+func updateListData() {
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktext_unexists").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug(total, "~", tmp["tmpid"])
+		}
+		tmpid := qu.ObjToString(tmp["tmpid"])
+		data := *elastic.GetByIdField("bidding", "bidding", tmpid, `"area","city","district","projectname","buyer","budget","winner","bidamount"`)
+		if len(data) > 0 {
+			area := qu.ObjToString(data["area"])
+			city := qu.ObjToString(data["city"])
+			district := qu.ObjToString(data["district"])
+			new_acd := area
+			if city != "" {
+				new_acd = new_acd + "~" + city
+			}
+			if district != "" {
+				new_acd = new_acd + "~" + district
+			}
+			delete(data, "area")
+			delete(data, "city")
+			delete(data, "district")
+			data["acd"] = new_acd
+			save_mgo.UpdateById("zktext_unexists", BsonTOStringId(tmp["_id"]), map[string]interface{}{
+				"$set": data,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over", total)
+}
+func exportListExcelData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("words_list").Find(&q).Iter()
+	//写邮件
+	os.Remove("111.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("标的物列表")
+	row := sheet.AddRow()
+	row.AddCell().Value = "标识"
+	row.AddCell().Value = "搜索词"
+	row.AddCell().Value = "产品名称"
+	row.AddCell().Value = "品牌"
+	row.AddCell().Value = "型号"
+	row.AddCell().Value = "单位"
+	row.AddCell().Value = "数量"
+	row.AddCell().Value = "单价"
+	row.AddCell().Value = "原文链接"
+	row.AddCell().Value = "剑鱼链接"
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug(total)
+		}
+		newArr := []map[string]interface{}{}
+		if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+			newArr = qu.ObjArrToMapArr(purchasinglist)
+		} else {
+			if purchasinglist, ok := tmp["purchasinglist"].([]interface{}); ok {
+				newArr = qu.ObjArrToMapArr(purchasinglist)
+			}
+		}
+		for k, v := range newArr {
+			row = sheet.AddRow()
+			if k == 0 {
+				row.AddCell().Value = qu.ObjToString(tmp["tmpid"])
+				row.AddCell().Value = qu.ObjToString(tmp["word"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["itemname"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["brandname"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["model"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["unitname"])
+				row.AddCell().Value = fmt.Sprintf("%f", v["number"])
+				row.AddCell().Value = fmt.Sprintf("%f", v["unitprice"])
+				row.AddCell().Value = qu.ObjToString(tmp["href"])
+				row.AddCell().Value = qu.ObjToString(tmp["jyhref"])
+			} else {
+
+				row.AddCell().Value = ""
+				row.AddCell().Value = ""
+				row.AddCell().Value = fmt.Sprintf("%s", v["itemname"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["brandname"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["model"])
+				row.AddCell().Value = fmt.Sprintf("%s", v["unitname"])
+				row.AddCell().Value = fmt.Sprintf("%f", v["number"])
+				row.AddCell().Value = fmt.Sprintf("%f", v["unitprice"])
+				row.AddCell().Value = ""
+				row.AddCell().Value = ""
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	err := f.Save("111.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+
+}
+func exportPurchasingListData() {
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	/*
+		"purchasinglist":map[string]interface{}{
+					"$exists":0,
+				},
+	*/
+	it := sess.DB(save_mgo.DbName).C("words_list").Find(&q).Iter()
+
+	pool := make(chan bool, 2)
+	wg := &sync.WaitGroup{}
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+
+		if total%100 == 0 {
+			log.Debug(total, tmp["tmpid"])
+		}
+		//开始多线程查询
+		pool <- true
+		wg.Add(1)
+		go func(dict map[string]interface{}) {
+			defer func() {
+				<-pool
+				wg.Done()
+			}()
+			tmpid := qu.ObjToString(dict["tmpid"])
+			word := qu.ObjToString(dict["word"])
+			data := *elastic.GetByIdField("bidding", "bidding", tmpid, `"purchasinglist"`)
+			newArr := []map[string]interface{}{}
+			if purchasinglist, ok := data["purchasinglist"].(primitive.A); ok {
+				newArr = dealWithNewList(qu.ObjArrToMapArr(purchasinglist), word)
+			} else {
+				if purchasinglist, ok := data["purchasinglist"].([]interface{}); ok {
+					newArr = dealWithNewList(qu.ObjArrToMapArr(purchasinglist), word)
+				}
+			}
+			if len(newArr) > 0 {
+				save_mgo.UpdateById("words_list", BsonTOStringId(dict["_id"]), map[string]interface{}{
+					"$set": map[string]interface{}{
+						"purchasinglist": newArr,
+					},
+				})
+			}
+		}(tmp)
+
+		tmp = make(map[string]interface{})
+	}
+	wg.Wait()
+	log.Debug("is over", total)
+}
+func dealWithNewList(oldArr []map[string]interface{}, word string) []map[string]interface{} {
+	newArr := []map[string]interface{}{}
+	for _, v := range oldArr {
+		itemname := qu.ObjToString(v["itemname"])
+		if strings.Contains(itemname, word) {
+			newArr = append(newArr, v)
+		}
+	}
+	return newArr
+}
+
+// 导出es数据标的物
+func exportWarningPurchasingData() {
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	words := []string{}
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("words").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		words = append(words, qu.ObjToString(tmp["word"]))
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("搜索词~", len(words))
+	//words =[]string{"鼻氧管"}
+
+	os.Remove("标的物-统计.xlsx")
+
+	f := xlsx.NewFile()
+	sheet_1, _ := f.AddSheet("标的物存在")
+	sheet_2, _ := f.AddSheet("标的物不存在")
+	sheet_3, _ := f.AddSheet("索引总数")
+	row_1 := sheet_1.AddRow()
+	row_2 := sheet_2.AddRow()
+	row_3 := sheet_3.AddRow()
+
+	row_1.AddCell().Value = "标识"
+	row_1.AddCell().Value = "标题"
+	row_1.AddCell().Value = "发布时间"
+	row_1.AddCell().Value = "站点"
+	row_1.AddCell().Value = "搜索词"
+	row_1.AddCell().Value = "标的内容"
+	row_1.AddCell().Value = "原文链接"
+	row_1.AddCell().Value = "剑鱼链接"
+
+	row_2.AddCell().Value = "标识"
+	row_2.AddCell().Value = "标题"
+	row_2.AddCell().Value = "发布时间"
+	row_2.AddCell().Value = "站点"
+	row_2.AddCell().Value = "搜索词"
+	row_2.AddCell().Value = "标的内容"
+	row_2.AddCell().Value = "原文链接"
+	row_2.AddCell().Value = "剑鱼链接"
+
+	row_3.AddCell().Value = "搜索词/索引数"
+	row_3.AddCell().Value = "单字段"
+	row_3.AddCell().Value = "多字段"
+
+	num_1, num_2 := 0, 0
+	for k, v := range words {
+		//query_1 :全字段    query_2 : 标的物字段
+		query_1 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing","title","detail"]}}]}}}},"_source":["_id","publishtime","title","purchasing","href","site"],"size":"100"}`, v)
+		query_2 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing"]}}]}}}},"_source":["_id","publishtime","title","purchasing","href","site"],"size":"100"}`, v)
+
+		query_3 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing","title","detail"]}}]}}}},"_source":["_id"],"size":"100000000"}`, v)
+		query_4 := fmt.Sprintf(`{"query":{"filtered":{"filter":{"bool":{"must":[{"terms":{"subtype":["单一","成交","中标","合同"]}},{"range":{"publishtime":{"gte":1546272000}}}]}},"query":{"bool":{"should":[{"multi_match":{"query":"%s","type":"phrase","fields":["purchasing"]}}]}}}},"_source":["_id"],"size":"100000000"}`, v)
+		res_3, _ := esclient.Search().Index("bidding").Type("bidding").Source(query_3).Do()
+		res_4, _ := esclient.Search().Index("bidding").Type("bidding").Source(query_4).Do()
+		resNum_3 := len(res_3.Hits.Hits)
+		resNum_4 := len(res_4.Hits.Hits)
+		data_1 := elastic.Get("bidding", "bidding", query_1)
+		data_2 := elastic.Get("bidding", "bidding", query_2)
+		//去重区分组数据
+		newArr_1, newArr_2 := dealWithBlockData(*data_1, *data_2, v)
+		for _, v := range newArr_1 {
+			row_1 = sheet_1.AddRow()
+			row_1.AddCell().Value = v["id"]
+			row_1.AddCell().Value = v["title"]
+			row_1.AddCell().Value = v["publishtime"]
+			row_1.AddCell().Value = v["site"]
+			row_1.AddCell().Value = v["word"]
+			row_1.AddCell().Value = v["purchasing"]
+			row_1.AddCell().Value = v["href"]
+			row_1.AddCell().Value = v["jyhref"]
+		}
+
+		for _, v := range newArr_2 {
+			row_2 = sheet_2.AddRow()
+			row_2.AddCell().Value = v["id"]
+			row_2.AddCell().Value = v["title"]
+			row_2.AddCell().Value = v["publishtime"]
+			row_2.AddCell().Value = v["site"]
+			row_2.AddCell().Value = v["word"]
+			row_2.AddCell().Value = v["purchasing"]
+			row_2.AddCell().Value = v["href"]
+			row_2.AddCell().Value = v["jyhref"]
+		}
+		row_3 = sheet_3.AddRow()
+		row_3.AddCell().Value = v
+		row_3.AddCell().Value = fmt.Sprintf("%d", resNum_3)
+		row_3.AddCell().Value = fmt.Sprintf("%d", resNum_4)
+
+		num_1 += resNum_3
+		num_2 += resNum_4
+
+		log.Debug("第", k, "组:", v, "总计:", num_1, "~", num_2)
+	}
+
+	err := f.Save("标的物-统计.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+
+	log.Debug("is over")
+}
+func dealWithBlockData(data_1, data_2 []map[string]interface{}, word string) ([]map[string]string, []map[string]string) {
+	newArr_1, newArr_2 := []map[string]string{}, []map[string]string{}
+	timeLayout := "2006-01-02"
+	for _, v := range data_2 {
+		cur_id := qu.ObjToString(v["_id"])
+		publishtime := qu.Int64All(v["publishtime"])
+		pt_str := time.Unix(publishtime, 0).Format(timeLayout)
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", cur_id))
+		newArr_1 = append(newArr_1, map[string]string{
+			"id":          cur_id,
+			"publishtime": pt_str,
+			"word":        word,
+			"purchasing":  qu.ObjToString(v["purchasing"]),
+			"href":        qu.ObjToString(v["href"]),
+			"jyhref":      jyhref,
+			"title":       qu.ObjToString(v["title"]),
+			"site":        qu.ObjToString(v["site"]),
+		})
+	}
+
+	for _, v := range data_1 {
+		cur_id := qu.ObjToString(v["_id"])
+		publishtime := qu.Int64All(v["publishtime"])
+		pt_str := time.Unix(publishtime, 0).Format(timeLayout)
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", cur_id))
+
+		isExists := false
+		for _, v1 := range data_2 {
+			new_id := qu.ObjToString(v1["_id"])
+			if cur_id == new_id {
+				isExists = true
+				break
+			}
+		}
+		if !isExists {
+			newArr_2 = append(newArr_2, map[string]string{
+				"id":          cur_id,
+				"publishtime": pt_str,
+				"word":        word,
+				"purchasing":  qu.ObjToString(v["purchasing"]),
+				"href":        qu.ObjToString(v["href"]),
+				"jyhref":      jyhref,
+				"title":       qu.ObjToString(v["title"]),
+				"site":        qu.ObjToString(v["site"]),
+			})
+		}
+	}
+
+	return newArr_1, newArr_2
+}
+
+// 导出错误数据-
+func exportErrSpecsData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_works_test").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		ck_s_winner := qu.IntAll(tmp["ck_s_winner"])
+		ck_bidamount := qu.IntAll(tmp["ck_bidamount"])
+		if ck_s_winner > 0 || ck_bidamount > 0 {
+			isok++
+			save_mgo.Save("zkzkzkzkzkzk", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, isok)
+}
+
+// 导出错误数据-
+func exportErrTagData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_errtag_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		tmpid := qu.ObjToString(tmp["_id"])
+		key_items := qu.ObjToString(tmp["key_items"])
+		key_items = strings.TrimSuffix(key_items, ",")
+		keysArr := strings.Split(key_items, ",")
+
+		if len(keysArr) > 0 {
+			savedict := tmp
+			data := save_mgo.FindById("zktest_errtag_bidding", tmpid)
+			for _, v := range keysArr {
+				savedict[v] = data[v]
+			}
+			savedict["href"] = data["href"]
+			jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+			savedict["jyhref"] = jyhref
+			save_mgo.Save("zktest_errtag_data_new", savedict)
+		}
+
+		//data := save_mgo.FindById("zktest_errtag_bidding",tmpid)
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// 导出错误数据-
+func exportErrWorksData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_works_test_new").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok)
+		}
+		if wrong_key_item, ok := tmp["wrong_key_item"].(primitive.A); ok {
+			if len(wrong_key_item) > 0 {
+				isSave := false
+				wrong_key, wrong_arr := "", []string{}
+				for _, v := range wrong_key_item {
+					if v == "bidamount" {
+						isSave = true
+						wrong_key += qu.ObjToString(v) + ","
+						wrong_arr = append(wrong_arr, qu.ObjToString(v))
+					}
+				}
+				if isSave && wrong_key != "" {
+					isok++
+					data := save_mgo.FindById("zktest_works_test", BsonTOStringId(tmp["_id"]))
+					dict := map[string]interface{}{
+						"_id":         data["_id"],
+						"wrong_key":   wrong_key,
+						"href":        data["href"],
+						"jytest_href": tmp["jytest_href"],
+					}
+					for _, v := range wrong_arr {
+						dict[v] = data[v]
+					}
+					save_mgo.Save("zktest_wrong_bidamount_data", dict)
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, isok)
+}
+
+// 导出全量-标注表2合一
+func exportAllWorksData() {
+	//works_1  works_2
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("works_1").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		save_mgo.Save("works_test", tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over works_1 ", total)
+
+	total = 0
+	it = sess.DB(save_mgo.DbName).C("works_2").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		save_mgo.Save("works_test", tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over works_2 ", total)
+}
+
+// 数据导出-1122-markwork_wb_zcz_zhong
+func exportRepair1122Data() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("markwork_wb_zcz_zhong").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, tmp["_id"])
+		}
+		ck_s_winner := qu.Int64All(tmp["ck_s_winner"])
+		ck_bidamount := qu.Int64All(tmp["ck_bidamount"])
+		ck_package := qu.Int64All(tmp["ck_package"])
+
+		if ck_s_winner > 1 || ck_bidamount > 1 || ck_package > 1 {
+			save_mgo.Save("zktest_err_data", tmp)
+
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over", total)
+
+}
+
+// 导出-插件任务
+func exportNoPluginTask() {
+	arr := []string{
+		"a_bqgyjtgscgdzswpt_zbhxrgs",
+		"a_bqgyjtgscgdzswpt_zbjggg",
+		"a_bqgyjtgscgdzswpt_bgcqgg",
+		"sc_ybsggzyjyxxw_qtxm",
+		"sc_ybsggzyjyxxw_gqzb",
+		"hb_whsggzyjypt_zgysgs",
+		"a_zgnfdwdzcgjypt_zbcggg",
+		"a_hcxcdzcgpt_cggg",
+		"hb_hbsggzyjyzx_zfcg_bggg",
+		"hb_hbsggzyjyzx_zfcg_qtgg",
+		"hb_hbsggzyjyzx_zfcg_cggg",
+		"hb_hbsggzyjyzx_zfcg_xqgg",
+		"hb_hbsggzyjyzx_zfcg_jggg",
+		"js_szszfcgwssc_jjjggg",
+		"js_szszfcgwssc_jjxqgg",
+		"a_zgnfhkcgzbw_zbgg",
+		"a_zgnfhkcgzbw_cggg",
+		"a_zgnfhkcgzbw_zhbgg",
+		"a_zgnfhkcgzbw_pbgs",
+		"a_zgnfhkcgzbw_cgjg",
+		"a_zgnfhkcgzbw_fzbcg_cggg",
+		"a_zgnfhkcgzbw_qtgg",
+		"sz_szsjzsczhcxpt_xmxx_zbxx",
+	}
+	dict := make(map[string]interface{}, 0)
+	for _, v := range arr {
+		dict[v] = 1
+	}
+
+	return
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("plugin_task").Find(&q).Iter()
+
+	taskData := make(map[string]interface{}, 0)
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		code := qu.ObjToString(tmp["code"])
+		if dict[code] != nil {
+			isok++
+		} else {
+			taskData[code] = 1
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over", total, isok, len(taskData))
+
+	for k, _ := range taskData {
+		log.Debug(k)
+	}
+}
+
+// 导出过大金额数据es - 1亿
+func exportToMuchBidamountData() {
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+
+	log.Debug("开始...遍历索引...")
+	total := int64(0)
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	query := es_elastic.NewRangeQuery("bidamount").Gte(100000000).Lt(1000000000000)
+	cursor, err := esclient.Scan("bidding").Query(es_elastic.NewBoolQuery().Must(query)).
+		Size(200).Do()
+	if err != nil {
+		log.Debug("cursor", err)
+	}
+	if cursor.Results == nil {
+		log.Debug("results != nil; got nil")
+	}
+	if cursor.Results.Hits == nil {
+		log.Debug("expected results.Hits != nil; got nil")
+	}
+	total += cursor.TotalHits()
+	log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+	numDocs := 0
+	//多线程 - 处理数据
+	pool_es := make(chan bool, 4)
+	wg_es := &sync.WaitGroup{}
+	for {
+		searchResult, err := cursor.Next()
+		if err != nil {
+			if err.Error() == "EOS" {
+				break
+			} else {
+				log.Debug("cursor searchResult", err)
+			}
+		}
+		for _, hit := range searchResult.Hits.Hits {
+			tmp := make(map[string]interface{})
+			err := json.Unmarshal(*hit.Source, &tmp)
+			if err != nil {
+				log.Debug("json Unmarshal error")
+				continue
+			}
+			if numDocs%1000 == 0 {
+				log.Debug("当前条数:", numDocs, "Es数据:", tmp["_id"])
+			}
+			numDocs++
+			tmpid := qu.ObjToString(tmp["_id"])
+			pool_es <- true
+			wg_es.Add(1)
+			go func(tmpid string) {
+				defer func() {
+					<-pool_es
+					wg_es.Done()
+				}()
+				//根据id查询-bidding-并保存
+				data := save_mgo.FindById("bidding", tmpid)
+				if data != nil && len(data) > 2 {
+					save_mgo.Save("zk_to_much_bidamount_data", data)
+				} else {
+					data = save_mgo.FindById("bidding_back", tmpid)
+					if data != nil && len(data) > 2 {
+						save_mgo.Save("zk_to_much_bidamount_data", data)
+					}
+				}
+			}(tmpid)
+		}
+	}
+	wg_es.Wait()
+
+	log.Debug("遍历完毕...", total, numDocs)
+}
+
+// 根据jyurl- 导出具体数据
+func exportFromUrlToDataArr() {
+	arr := []string{}
+	for _, v := range arr {
+		var Decode = qu.CommonDecodeArticle("content", v)
+		tmpid := Decode[0]
+		data := save_mgo.FindById("bidding", tmpid)
+		if data != nil && len(data) > 2 {
+			save_mgo.Save("zk_jjyh_err_data_two", data)
+		} else {
+			data = save_mgo.FindById("bidding_back", tmpid)
+			if data != nil && len(data) > 2 {
+				save_mgo.Save("zk_jjyh_err_data_two", data)
+			}
+		}
+	}
+}
+
+// 刷数据
+func exportRepairNewStandData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_new_sssttt_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		buyer_name := qu.ObjToString(tmp["buyer"])
+		buyerclass := qu.ObjToString(tmp["buyerclass"])
+		data := python_mgo.FindOne("buyer_enterprise", map[string]interface{}{
+			"buyer_name": buyer_name,
+		})
+		if data != nil {
+			isok++
+			python_mgo.UpdateById("buyer_enterprise", BsonTOStringId(data["_id"]), map[string]interface{}{
+				"$set": map[string]interface{}{
+					"buyerclass": buyerclass,
+				},
+			})
+
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over", total, isok)
+}
+
+// 导出数据
+func exportNewStandData() {
+	//zktest_new_buyerstand_data
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(python_mgo.DbName).C("zktest_new_buyerstand_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		buyer_name := qu.ObjToString(tmp["buyer_name"])
+		query := `{"query":{"bool":{"must":[{"term":{"bidding.buyer":` + `"` + buyer_name + `"` + `}}],"must_not":[],"should":[]}},"from":"0","size":"1","sort":[],"facets":{}}`
+		arr := *elastic.Get("bidding", "bidding", query)
+		if arr != nil && len(arr) > 0 {
+			source_id := qu.ObjToString(arr[0]["_id"])
+			if source_id != "" {
+				data := save_mgo.FindById("result_20210108", source_id)
+				if data != nil && len(data) > 2 {
+					isok++
+					save_mgo.Save("zktest_new_stand_data", data)
+				} else {
+					isok++
+					save_mgo.Save("zktest_new_stand_data", map[string]interface{}{
+						"buyer": buyer_name,
+					})
+				}
+			}
+		} else {
+			isok++
+			save_mgo.Save("zktest_new_stand_data", map[string]interface{}{
+				"buyer": buyer_name,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over", total, isok)
+}
+
+// 导出-err标准数据
+func exportOtherErrStandardataTwo() {
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(python_mgo.DbName).C("buyer_enterprise_new").Find(&q).Select(map[string]interface{}{
+		"buyer_name": 1,
+	}).Iter()
+	pool_data := make(chan bool, 8)
+	wg_data := &sync.WaitGroup{}
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		buyer_name := qu.ObjToString(tmp["buyer_name"])
+		if utf8.RuneCountInString(buyer_name) < 4 {
+			continue
+			tmp = make(map[string]interface{})
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		pool_data <- true
+		wg_data.Add(1)
+		go func(buyer_name string, tmpid string) {
+			defer func() {
+				<-pool_data
+				wg_data.Done()
+			}()
+			stand_data := python_mgo.FindOne("buyer_enterprise", map[string]interface{}{
+				"buyer_name": buyer_name,
+			})
+			if len(stand_data) > 2 && stand_data != nil {
+
+			} else {
+				//查询企业库是否存在
+				qy_data := python_mgo.FindOne("qyxy_std", map[string]interface{}{
+					"company_name": buyer_name,
+				})
+				if len(qy_data) > 2 && qy_data != nil {
+					//企业库存在-真实有效-看标准库是否存在
+					isok++
+					dict := map[string]interface{}{
+						"buyer_name": buyer_name,
+					}
+					python_mgo.Save("zktest_new_buyerstand_data", dict)
+				}
+			}
+		}(buyer_name, tmpid)
+		tmp = make(map[string]interface{})
+	}
+	wg_data.Wait()
+
+	log.Debug("is over", total, isok)
+}
+func exportOtherErrStandardataOne() {
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(python_mgo.DbName).C("buyer_err").Find(&q).Select(map[string]interface{}{
+		"name": 1,
+	}).Iter()
+	pool_data := make(chan bool, 8)
+	wg_data := &sync.WaitGroup{}
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		buyer_name := qu.ObjToString(tmp["name"])
+		if utf8.RuneCountInString(buyer_name) < 4 {
+			continue
+			tmp = make(map[string]interface{})
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		pool_data <- true
+		wg_data.Add(1)
+		go func(buyer_name string, tmpid string) {
+			defer func() {
+				<-pool_data
+				wg_data.Done()
+			}()
+
+			//查询企业库是否存在
+			qy_data := python_mgo.FindOne("qyxy_std", map[string]interface{}{
+				"company_name": buyer_name,
+			})
+			if len(qy_data) > 2 && qy_data != nil {
+				//企业库存在-真实有效-看标准库是否存在
+				stand_data := python_mgo.FindOne("buyer_enterprise", map[string]interface{}{
+					"buyer_name": buyer_name,
+				})
+				if len(stand_data) > 2 && stand_data != nil {
+					python_mgo.DeleteById("buyer_err", BsonTOStringId(tmp["_id"]))
+				} else {
+					isok++
+					dict := map[string]interface{}{
+						"buyer_name": buyer_name,
+					}
+					python_mgo.Save("zktest_new_buyerstand_data", dict)
+					python_mgo.DeleteById("buyer_err", BsonTOStringId(tmp["_id"]))
+				}
+			}
+		}(buyer_name, tmpid)
+		tmp = make(map[string]interface{})
+	}
+	wg_data.Wait()
+
+	log.Debug("is over", total, isok)
+}
+
+// 导出数据
+func filterDataBuyerWinnerLength() {
+	reg := regexp.MustCompile(`^.{2}([大|小|中|学][学|院]|公司)$`)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_buyer_stand_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		buyer := qu.ObjToString(tmp["buyer"])
+		winner := qu.ObjToString(tmp["winner"])
+		if (reg.MatchString(buyer) && utf8.RuneCountInString(buyer) == 4) ||
+			(reg.MatchString(winner) && utf8.RuneCountInString(winner) == 4) {
+			//符合
+			isok++
+			save_mgo.Save("zktest_buyerstand_data_repair", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("export unit is over", total, isok)
+}
+
+// 遍历es 导出异常数据
+func exportErrQuanGuoData() {
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	//elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+
+	log.Debug("开始导出......")
+	//遍历索引
+	esclient := elastic.GetEsConn()
+	defer elastic.DestoryEsConn(esclient)
+
+	if esclient == nil {
+		log.Debug("连接池异常")
+	}
+	//q :=es_elastic.NewTermQuery("area","全国")
+
+	arr := []map[string]interface{}{
+		{"key": "广东", "count": 9793435, "aaabbb": "1"},
+		{"key": "广州市", "count": 1753303},
+		{"key": "深圳市", "count": 943391},
+		{"key": "佛山市", "count": 878137},
+		{"key": "惠州市", "count": 588756},
+		{"key": "中山市", "count": 511753},
+		{"key": "清远市", "count": 408415},
+		{"key": "韶关市", "count": 401834},
+		{"key": "东莞市", "count": 399658},
+		{"key": "肇庆市", "count": 371789},
+		{"key": "茂名市", "count": 355259},
+		{"key": "珠海市", "count": 352554},
+		{"key": "湛江市", "count": 348396},
+		{"key": "汕头市", "count": 330634},
+		{"key": "梅州市", "count": 280759},
+		{"key": "江门市", "count": 234517},
+		{"key": "潮州市", "count": 190182},
+		{"key": "云浮市", "count": 190009},
+		{"key": "河源市", "count": 173828},
+		{"key": "汕尾市", "count": 160951},
+		{"key": "阳江市", "count": 159198},
+		{"key": "揭阳市", "count": 152241},
+		{"key": "佛山", "count": 104},
+		{"key": "中山", "count": 15},
+		{"key": "深圳", "count": 14},
+		{"key": "东莞", "count": 13},
+		{"key": "江门", "count": 9},
+		{"key": "广东省", "count": 8},
+		{"key": "广州", "count": 4},
+		{"key": "惠州", "count": 3},
+		{"key": "北京市", "count": 1},
+		{"key": "珠海", "count": 1},
+		{"key": "阳江", "count": 1},
+		{"key": "山东", "count": 6269916, "aaabbb": "1"},
+		{"key": "济南市", "count": 1215749},
+		{"key": "青岛市", "count": 783079},
+		{"key": "潍坊市", "count": 493730},
+		{"key": "临沂市", "count": 407297},
+		{"key": "济宁市", "count": 367980},
+		{"key": "烟台市", "count": 337735},
+		{"key": "聊城市", "count": 317560},
+		{"key": "淄博市", "count": 292306},
+		{"key": "日照市", "count": 279839},
+		{"key": "德州市", "count": 254100},
+		{"key": "泰安市", "count": 243043},
+		{"key": "滨州市", "count": 229494},
+		{"key": "威海市", "count": 224879},
+		{"key": "菏泽市", "count": 215532},
+		{"key": "东营市", "count": 150344},
+		{"key": "枣庄市", "count": 136861},
+		{"key": "莱芜市", "count": 9186},
+		{"key": "寿光市", "count": 137},
+		{"key": "济南", "count": 30},
+		{"key": "潍坊", "count": 20},
+		{"key": "山东省", "count": 14},
+		{"key": "东营", "count": 12},
+		{"key": "莱芜", "count": 12},
+		{"key": "威海", "count": 8},
+		{"key": "济宁", "count": 5},
+		{"key": "聊城", "count": 5},
+		{"key": "北京市", "count": 3},
+		{"key": "青岛", "count": 2},
+		{"key": "曲阜市", "count": 1},
+		{"key": "西安市", "count": 1},
+		{"key": "全国", "count": 5483318, "aaabbb": "1"},
+		{"key": "哈密地区", "count": 12},
+		{"key": "唐山市", "count": 11},
+		{"key": "绍兴市", "count": 10},
+		{"key": "泰州市", "count": 9},
+		{"key": "石家庄市", "count": 8},
+		{"key": "台湾省", "count": 6},
+		{"key": "合肥市", "count": 6},
+		{"key": "广州市", "count": 6},
+		{"key": "舟山市", "count": 6},
+		{"key": "黄冈市", "count": 6},
+		{"key": "福州市", "count": 5},
+		{"key": "仙桃市", "count": 3},
+		{"key": "北京市", "count": 3},
+		{"key": "廊坊市", "count": 3},
+		{"key": "成都市", "count": 3},
+		{"key": "十堰市", "count": 2},
+		{"key": "南宁市", "count": 2},
+		{"key": "日照市", "count": 2},
+		{"key": "沧州市", "count": 2},
+		{"key": "六盘水市", "count": 1},
+		{"key": "南京市", "count": 1},
+		{"key": "南昌市", "count": 1},
+		{"key": "周口市", "count": 1},
+		{"key": "呼伦贝尔市", "count": 1},
+		{"key": "大连市", "count": 1},
+		{"key": "太原市", "count": 1},
+		{"key": "宁波市", "count": 1},
+		{"key": "宜昌市", "count": 1},
+		{"key": "宣城市", "count": 1},
+		{"key": "宿迁市", "count": 1},
+		{"key": "崇左市", "count": 1},
+		{"key": "张家口市", "count": 1},
+		{"key": "承德市", "count": 1},
+		{"key": "无锡市", "count": 1},
+		{"key": "池州市", "count": 1},
+		{"key": "泉州市", "count": 1},
+		{"key": "泸州市", "count": 1},
+		{"key": "济南市", "count": 1},
+		{"key": "深圳市", "count": 1},
+		{"key": "湘潭市", "count": 1},
+		{"key": "滁州市", "count": 1},
+		{"key": "漳州市", "count": 1},
+		{"key": "盐城市", "count": 1},
+		{"key": "秦皇岛市", "count": 1},
+		{"key": "西安市", "count": 1},
+		{"key": "贺州市", "count": 1},
+		{"key": "金华市", "count": 1},
+		{"key": "铜陵市", "count": 1},
+		{"key": "防城港市", "count": 1},
+		{"key": "香港", "count": 1},
+		{"key": "黄山市", "count": 1},
+		{"key": "安徽", "count": 4632338, "aaabbb": "1"},
+		{"key": "合肥市", "count": 1141306},
+		{"key": "芜湖市", "count": 353318},
+		{"key": "滁州市", "count": 338535},
+		{"key": "安庆市", "count": 300115},
+		{"key": "阜阳市", "count": 284622},
+		{"key": "蚌埠市", "count": 272222},
+		{"key": "六安市", "count": 264551},
+		{"key": "马鞍山市", "count": 198801},
+		{"key": "淮南市", "count": 167301},
+		{"key": "宣城市", "count": 166202},
+		{"key": "宿州市", "count": 159114},
+		{"key": "淮北市", "count": 147424},
+		{"key": "铜陵市", "count": 139928},
+		{"key": "亳州市", "count": 130658},
+		{"key": "黄山市", "count": 112832},
+		{"key": "池州市", "count": 106672},
+		{"key": "安徽省", "count": 40},
+		{"key": "六安", "count": 11},
+		{"key": "明光市", "count": 6},
+		{"key": "北京市", "count": 5},
+		{"key": "成都市", "count": 5},
+		{"key": "池州", "count": 5},
+		{"key": "芜湖", "count": 3},
+		{"key": "铜陵", "count": 3},
+		{"key": "宁国市", "count": 2},
+		{"key": "宿州", "count": 2},
+		{"key": "巢湖市", "count": 2},
+		{"key": "桐城市", "count": 2},
+		{"key": "天长市", "count": 1},
+		{"key": "宁波市", "count": 1},
+		{"key": "淮南", "count": 1},
+		{"key": "江苏", "count": 4435667, "aaabbb": "1"},
+		{"key": "苏州市", "count": 842243},
+		{"key": "南京市", "count": 824043},
+		{"key": "南通市", "count": 403431},
+		{"key": "无锡市", "count": 317612},
+		{"key": "徐州市", "count": 299127},
+		{"key": "盐城市", "count": 258593},
+		{"key": "泰州市", "count": 251034},
+		{"key": "常州市", "count": 214472},
+		{"key": "扬州市", "count": 187995},
+		{"key": "淮安市", "count": 175585},
+		{"key": "宿迁市", "count": 163395},
+		{"key": "连云港市", "count": 133076},
+		{"key": "镇江市", "count": 107756},
+		{"key": "南通", "count": 51},
+		{"key": "徐州", "count": 25},
+		{"key": "盐城", "count": 14},
+		{"key": "江苏省", "count": 8},
+		{"key": "张家港市", "count": 6},
+		{"key": "苏州", "count": 6},
+		{"key": "泰州", "count": 4},
+		{"key": "淮安", "count": 3},
+		{"key": "启东市", "count": 2},
+		{"key": "常州", "count": 2},
+		{"key": "省级", "count": 2},
+		{"key": "南昌市", "count": 1},
+		{"key": "宿迁", "count": 1},
+		{"key": "扬州", "count": 1},
+		{"key": "昆山市", "count": 1},
+		{"key": "深圳市", "count": 1},
+		{"key": "浙江", "count": 4401850, "aaabbb": "1"},
+		{"key": "杭州市", "count": 992043},
+		{"key": "宁波市", "count": 700214},
+		{"key": "温州市", "count": 414879},
+		{"key": "绍兴市", "count": 352198},
+		{"key": "金华市", "count": 324588},
+		{"key": "台州市", "count": 316565},
+		{"key": "嘉兴市", "count": 310341},
+		{"key": "湖州市", "count": 271288},
+		{"key": "衢州市", "count": 201524},
+		{"key": "丽水市", "count": 152489},
+		{"key": "舟山市", "count": 107685},
+		{"key": "浙江省", "count": 46},
+		{"key": "杭州", "count": 11},
+		{"key": "舟山", "count": 9},
+		{"key": "西安市", "count": 9},
+		{"key": "湖州", "count": 5},
+		{"key": "嘉兴", "count": 4},
+		{"key": "温州", "count": 4},
+		{"key": "市辖区", "count": 3},
+		{"key": "宁波", "count": 2},
+		{"key": "北京市", "count": 1},
+		{"key": "台州", "count": 1},
+		{"key": "金华", "count": 1},
+		{"key": "河南", "count": 3666362, "aaabbb": "1"},
+		{"key": "郑州市", "count": 673491},
+		{"key": "洛阳市", "count": 328491},
+		{"key": "新乡市", "count": 237255},
+		{"key": "南阳市", "count": 223247},
+		{"key": "安阳市", "count": 218754},
+		{"key": "驻马店市", "count": 217813},
+		{"key": "平顶山市", "count": 186979},
+		{"key": "三门峡市", "count": 167211},
+		{"key": "信阳市", "count": 154336},
+		{"key": "商丘市", "count": 153689},
+		{"key": "焦作市", "count": 149721},
+		{"key": "周口市", "count": 144066},
+		{"key": "许昌市", "count": 135852},
+		{"key": "开封市", "count": 118859},
+		{"key": "漯河市", "count": 94887},
+		{"key": "濮阳市", "count": 88297},
+		{"key": "鹤壁市", "count": 76808},
+		{"key": "济源市", "count": 43054},
+		{"key": "河南省直辖县", "count": 863},
+		{"key": "安阳", "count": 4},
+		{"key": "新乡", "count": 4},
+		{"key": "开封", "count": 3},
+		{"key": "焦作", "count": 3},
+		{"key": "郑州", "count": 3},
+		{"key": "商丘", "count": 2},
+		{"key": "平顶山", "count": 2},
+		{"key": "河南省", "count": 2},
+		{"key": "北京市", "count": 1},
+		{"key": "湖北", "count": 3654839, "aaabbb": "1"},
+		{"key": "武汉市", "count": 1258813},
+		{"key": "宜昌市", "count": 279842},
+		{"key": "黄冈市", "count": 254597},
+		{"key": "襄阳市", "count": 193143},
+		{"key": "荆州市", "count": 165337},
+		{"key": "十堰市", "count": 161218},
+		{"key": "黄石市", "count": 160628},
+		{"key": "荆门市", "count": 149306},
+		{"key": "恩施土家族苗族自治州", "count": 148460},
+		{"key": "孝感市", "count": 135179},
+		{"key": "咸宁市", "count": 89598},
+		{"key": "鄂州市", "count": 66172},
+		{"key": "随州市", "count": 65980},
+		{"key": "潜江市", "count": 29670},
+		{"key": "仙桃市", "count": 28311},
+		{"key": "天门市", "count": 20242},
+		{"key": "神农架林区", "count": 10130},
+		{"key": "湖北省直辖县", "count": 2865},
+		{"key": "湖北省", "count": 70},
+		{"key": "武汉", "count": 65},
+		{"key": "宜昌", "count": 18},
+		{"key": "常德市", "count": 12},
+		{"key": "恩施市", "count": 11},
+		{"key": "绍兴市", "count": 5},
+		{"key": "恩施", "count": 4},
+		{"key": "汉川市", "count": 3},
+		{"key": "荆州", "count": 3},
+		{"key": "北京市", "count": 2},
+		{"key": "黄冈", "count": 2},
+		{"key": "无锡", "count": 1},
+		{"key": "四川", "count": 3470092, "aaabbb": "1"},
+		{"key": "成都市", "count": 1064778},
+		{"key": "绵阳市", "count": 185539},
+		{"key": "宜宾市", "count": 170502},
+		{"key": "凉山彝族自治州", "count": 143691},
+		{"key": "泸州市", "count": 135888},
+		{"key": "乐山市", "count": 131874},
+		{"key": "广安市", "count": 131567},
+		{"key": "德阳市", "count": 129990},
+		{"key": "攀枝花市", "count": 121624},
+		{"key": "阿坝藏族羌族自治州", "count": 117478},
+		{"key": "南充市", "count": 109340},
+		{"key": "达州市", "count": 108798},
+		{"key": "内江市", "count": 103166},
+		{"key": "遂宁市", "count": 91889},
+		{"key": "雅安市", "count": 88964},
+		{"key": "巴中市", "count": 86702},
+		{"key": "眉山市", "count": 80066},
+		{"key": "甘孜藏族自治州", "count": 74544},
+		{"key": "广元市", "count": 73446},
+		{"key": "自贡市", "count": 69646},
+		{"key": "资阳市", "count": 53426},
+		{"key": "赣州市", "count": 15},
+		{"key": "泸州", "count": 11},
+		{"key": "成都", "count": 3},
+		{"key": "乐山", "count": 2},
+		{"key": "内江", "count": 2},
+		{"key": "四川省", "count": 2},
+		{"key": "重庆市", "count": 2},
+		{"key": "阿坝", "count": 2},
+		{"key": " 阿坝藏族羌族自治州", "count": 1},
+		{"key": "康定市", "count": 1},
+		{"key": "达州", "count": 1},
+		{"key": "河北", "count": 3294115, "aaabbb": "1"},
+		{"key": "石家庄市", "count": 543675},
+		{"key": "唐山市", "count": 417066},
+		{"key": "保定市", "count": 330757},
+		{"key": "邯郸市", "count": 278732},
+		{"key": "张家口市", "count": 267044},
+		{"key": "邢台市", "count": 250413},
+		{"key": "沧州市", "count": 240797},
+		{"key": "廊坊市", "count": 193701},
+		{"key": "承德市", "count": 168829},
+		{"key": "衡水市", "count": 144723},
+		{"key": "秦皇岛市", "count": 139254},
+		{"key": "雄安新区", "count": 624},
+		{"key": "中国", "count": 254},
+		{"key": "定州市", "count": 238},
+		{"key": "辛集市", "count": 176},
+		{"key": "河北省", "count": 80},
+		{"key": "衡水", "count": 35},
+		{"key": "保定", "count": 22},
+		{"key": "天津市", "count": 12},
+		{"key": "沧州", "count": 8},
+		{"key": "北京市", "count": 7},
+		{"key": "鄂尔多斯市", "count": 7},
+		{"key": "通辽市", "count": 5},
+		{"key": "宣化区", "count": 4},
+		{"key": "阿克苏地区", "count": 3},
+		{"key": "吕梁市", "count": 2},
+		{"key": "曹妃甸区", "count": 2},
+		{"key": "赤峰市", "count": 2},
+		{"key": "兴安盟", "count": 1},
+		{"key": "内蒙古自治区", "count": 1},
+		{"key": "山西省", "count": 1},
+		{"key": "晋中市", "count": 1},
+		{"key": "景德镇市", "count": 1},
+		{"key": "芜湖市", "count": 1},
+		{"key": "锡林郭勒盟", "count": 1},
+		{"key": "北京", "count": 3124715, "aaabbb": "1"},
+		{"key": "北京市", "count": 2845500},
+		{"key": "北京", "count": 175},
+		{"key": "台湾省", "count": 1},
+		{"key": "湖南", "count": 3107662, "aaabbb": "1"},
+		{"key": "长沙市", "count": 420310},
+		{"key": "常德市", "count": 346770},
+		{"key": "衡阳市", "count": 236878},
+		{"key": "岳阳市", "count": 228627},
+		{"key": "株洲市", "count": 216311},
+		{"key": "邵阳市", "count": 211242},
+		{"key": "郴州市", "count": 204226},
+		{"key": "永州市", "count": 187618},
+		{"key": "湘潭市", "count": 184341},
+		{"key": "娄底市", "count": 160831},
+		{"key": "怀化市", "count": 158138},
+		{"key": "益阳市", "count": 153986},
+		{"key": "湘西土家族苗族自治州", "count": 85236},
+		{"key": "张家界市", "count": 68379},
+		{"key": "常德", "count": 47},
+		{"key": "湖南省", "count": 10},
+		{"key": "郴州", "count": 7},
+		{"key": "长沙", "count": 6},
+		{"key": "株洲", "count": 5},
+		{"key": "岳阳", "count": 4},
+		{"key": "北京市", "count": 1},
+		{"key": "广西", "count": 2763650, "aaabbb": "1"},
+		{"key": "南宁市", "count": 577313},
+		{"key": "柳州市", "count": 263512},
+		{"key": "桂林市", "count": 226579},
+		{"key": "玉林市", "count": 218418},
+		{"key": "百色市", "count": 209251},
+		{"key": "河池市", "count": 138393},
+		{"key": "梧州市", "count": 127526},
+		{"key": "贵港市", "count": 121144},
+		{"key": "贺州市", "count": 118424},
+		{"key": "崇左市", "count": 118201},
+		{"key": "钦州市", "count": 113341},
+		{"key": "北海市", "count": 108664},
+		{"key": "来宾市", "count": 88909},
+		{"key": "防城港市", "count": 72234},
+		{"key": "南宁", "count": 22},
+		{"key": "柳州", "count": 18},
+		{"key": "桂林", "count": 13},
+		{"key": "崇左", "count": 4},
+		{"key": "贵港", "count": 3},
+		{"key": "北京市", "count": 2},
+		{"key": "广西壮族自治区", "count": 2},
+		{"key": "云南", "count": 2170568, "aaabbb": "1"},
+		{"key": "昆明市", "count": 629160},
+		{"key": "红河哈尼族彝族自治州", "count": 167863},
+		{"key": "曲靖市", "count": 136756},
+		{"key": "大理白族自治州", "count": 127998},
+		{"key": "文山壮族苗族自治州", "count": 116749},
+		{"key": "玉溪市", "count": 109365},
+		{"key": "保山市", "count": 100408},
+		{"key": "昭通市", "count": 89061},
+		{"key": "楚雄彝族自治州", "count": 88131},
+		{"key": "德宏傣族景颇族自治州", "count": 77106},
+		{"key": "普洱市", "count": 70504},
+		{"key": "临沧市", "count": 64399},
+		{"key": "丽江市", "count": 60618},
+		{"key": "西双版纳傣族自治州", "count": 39556},
+		{"key": "怒江傈僳族自治州", "count": 33019},
+		{"key": "迪庆藏族自治州", "count": 27329},
+		{"key": "云南省", "count": 18},
+		{"key": "昆明", "count": 9},
+		{"key": "德宏市", "count": 1},
+		{"key": "怒江", "count": 1},
+		{"key": "红河州", "count": 1},
+		{"key": "黔南布依族苗族自治州", "count": 1},
+		{"key": "内蒙古", "count": 2103716, "aaabbb": "1"},
+		{"key": "呼和浩特市", "count": 328682},
+		{"key": "包头市", "count": 317351},
+		{"key": "鄂尔多斯市", "count": 235804},
+		{"key": "呼伦贝尔市", "count": 221260},
+		{"key": "赤峰市", "count": 181006},
+		{"key": "通辽市", "count": 154464},
+		{"key": "锡林郭勒盟", "count": 135571},
+		{"key": "乌兰察布市", "count": 82661},
+		{"key": "巴彦淖尔市", "count": 77601},
+		{"key": "乌海市", "count": 77036},
+		{"key": "兴安盟", "count": 57710},
+		{"key": "阿拉善盟", "count": 43380},
+		{"key": "内蒙古自治区", "count": 8},
+		{"key": "鄂尔多斯", "count": 6},
+		{"key": "乌兰察布市本级", "count": 2},
+		{"key": "巴彦淖尔", "count": 2},
+		{"key": "丰镇市", "count": 1},
+		{"key": "山西", "count": 2096988, "aaabbb": "1"},
+		{"key": "太原市", "count": 429754},
+		{"key": "运城市", "count": 223795},
+		{"key": "长治市", "count": 203082},
+		{"key": "大同市", "count": 181022},
+		{"key": "临汾市", "count": 158430},
+		{"key": "忻州市", "count": 155193},
+		{"key": "晋中市", "count": 142101},
+		{"key": "吕梁市", "count": 126085},
+		{"key": "晋城市", "count": 109804},
+		{"key": "阳泉市", "count": 81033},
+		{"key": "朔州市", "count": 77921},
+		{"key": "山西省", "count": 16},
+		{"key": "运城", "count": 8},
+		{"key": "河北省", "count": 5},
+		{"key": "海南省", "count": 4},
+		{"key": "综改示范区", "count": 4},
+		{"key": "吕梁", "count": 2},
+		{"key": "忻州", "count": 2},
+		{"key": "应县", "count": 1},
+		{"key": "福建", "count": 2070469, "aaabbb": "1"},
+		{"key": "福州市", "count": 564782},
+		{"key": "厦门市", "count": 352850},
+		{"key": "漳州市", "count": 225186},
+		{"key": "泉州市", "count": 198332},
+		{"key": "南平市", "count": 129467},
+		{"key": "龙岩市", "count": 128762},
+		{"key": "宁德市", "count": 127930},
+		{"key": "三明市", "count": 114405},
+		{"key": "莆田市", "count": 107855},
+		{"key": "包头市", "count": 52},
+		{"key": "龙岩", "count": 12},
+		{"key": "福州", "count": 8},
+		{"key": "福建省", "count": 4},
+		{"key": "宁德", "count": 2},
+		{"key": "平潭综合实验区", "count": 1},
+		{"key": "陕西", "count": 1902928, "aaabbb": "1"},
+		{"key": "西安市", "count": 675710},
+		{"key": "榆林市", "count": 178579},
+		{"key": "延安市", "count": 146406},
+		{"key": "咸阳市", "count": 113056},
+		{"key": "宝鸡市", "count": 111059},
+		{"key": "安康市", "count": 106603},
+		{"key": "渭南市", "count": 96026},
+		{"key": "汉中市", "count": 86647},
+		{"key": "铜川市", "count": 43244},
+		{"key": "商洛市", "count": 39509},
+		{"key": "陕西省市", "count": 1944},
+		{"key": "陕西省", "count": 40},
+		{"key": "西安", "count": 10},
+		{"key": "榆林", "count": 2},
+		{"key": "北京市", "count": 1},
+		{"key": "渭南", "count": 1},
+		{"key": "辽宁", "count": 1851028, "aaabbb": "1"},
+		{"key": "沈阳市", "count": 556549},
+		{"key": "大连市", "count": 328224},
+		{"key": "鞍山市", "count": 127900},
+		{"key": "锦州市", "count": 91088},
+		{"key": "朝阳市", "count": 87185},
+		{"key": "阜新市", "count": 74302},
+		{"key": "抚顺市", "count": 74102},
+		{"key": "丹东市", "count": 70618},
+		{"key": "营口市", "count": 69206},
+		{"key": "葫芦岛市", "count": 60550},
+		{"key": "铁岭市", "count": 57758},
+		{"key": "盘锦市", "count": 57059},
+		{"key": "辽阳市", "count": 55859},
+		{"key": "本溪市", "count": 41575},
+		{"key": "沈阳市铁西区", "count": 20},
+		{"key": "沈阳", "count": 9},
+		{"key": "凌源市", "count": 4},
+		{"key": "沈阳市辽中区", "count": 4},
+		{"key": "葫芦岛", "count": 4},
+		{"key": "大连", "count": 3},
+		{"key": "沈阳市沈河区", "count": 2},
+		{"key": "沈阳市法库县", "count": 2},
+		{"key": "沈阳市浑南区", "count": 2},
+		{"key": "辽阳", "count": 2},
+		{"key": "北京市", "count": 1},
+		{"key": "沈阳市于洪区", "count": 1},
+		{"key": "沈阳市和平区", "count": 1},
+		{"key": "沈阳市康平县", "count": 1},
+		{"key": "沈阳市新民市", "count": 1},
+		{"key": "沈阳市皇姑区", "count": 1},
+		{"key": "沈阳市经济技术开发区", "count": 1},
+		{"key": "沈阳市自贸区", "count": 1},
+		{"key": "深圳市", "count": 1},
+		{"key": "鞍山", "count": 1},
+		{"key": "天津", "count": 1802752, "aaabbb": "1"},
+		{"key": "天津市", "count": 1771141},
+		{"key": "天津", "count": 67},
+		{"key": "市辖区", "count": 2},
+		{"key": "江西", "count": 1756655, "aaabbb": "1"},
+		{"key": "南昌市", "count": 343937},
+		{"key": "赣州市", "count": 321017},
+		{"key": "九江市", "count": 170996},
+		{"key": "上饶市", "count": 167291},
+		{"key": "吉安市", "count": 114272},
+		{"key": "宜春市", "count": 108016},
+		{"key": "抚州市", "count": 96319},
+		{"key": "新余市", "count": 69877},
+		{"key": "景德镇市", "count": 54104},
+		{"key": "萍乡市", "count": 52328},
+		{"key": "鹰潭市", "count": 46340},
+		{"key": "赣州", "count": 8},
+		{"key": "南昌", "count": 6},
+		{"key": "jx_srsqsxrmzfw_zt_ggzyjyzx", "count": 2},
+		{"key": "江西省", "count": 2},
+		{"key": "吉安", "count": 1},
+		{"key": "宜春", "count": 1},
+		{"key": "上海", "count": 1743476, "aaabbb": "1"},
+		{"key": "上海市", "count": 1704903},
+		{"key": "上海", "count": 20},
+		{"key": "甘肃", "count": 1617088, "aaabbb": "1"},
+		{"key": "兰州市", "count": 361451},
+		{"key": "酒泉市", "count": 135240},
+		{"key": "临夏回族自治州", "count": 131968},
+		{"key": "天水市", "count": 114734},
+		{"key": "张掖市", "count": 109374},
+		{"key": "平凉市", "count": 108370},
+		{"key": "庆阳市", "count": 90630},
+		{"key": "白银市", "count": 82210},
+		{"key": "陇南市", "count": 76131},
+		{"key": "武威市", "count": 75513},
+		{"key": "定西市", "count": 71037},
+		{"key": "甘南藏族自治州", "count": 56897},
+		{"key": "嘉峪关市", "count": 40115},
+		{"key": "金昌市", "count": 27609},
+		{"key": "张掖", "count": 15},
+		{"key": "甘肃省", "count": 6},
+		{"key": "厦门市", "count": 3},
+		{"key": "北京市", "count": 1},
+		{"key": "西安", "count": 1},
+		{"key": "新疆", "count": 1610315, "aaabbb": "1"},
+		{"key": "乌鲁木齐市", "count": 323937},
+		{"key": "喀什地区", "count": 167416},
+		{"key": "巴音郭楞蒙古自治州", "count": 144437},
+		{"key": "阿克苏地区", "count": 119623},
+		{"key": "昌吉回族自治州", "count": 106320},
+		{"key": "伊犁哈萨克自治州", "count": 86560},
+		{"key": "阿勒泰地区", "count": 79443},
+		{"key": "克拉玛依市", "count": 60455},
+		{"key": "塔城地区", "count": 59067},
+		{"key": "和田地区", "count": 55855},
+		{"key": "哈密市", "count": 50247},
+		{"key": "克孜勒苏柯尔克孜自治州", "count": 34835},
+		{"key": "博尔塔拉蒙古自治州", "count": 33795},
+		{"key": "石河子市", "count": 33203},
+		{"key": "吐鲁番市", "count": 28939},
+		{"key": "阿拉尔市", "count": 19590},
+		{"key": "五家渠市", "count": 8152},
+		{"key": "图木舒克市", "count": 8006},
+		{"key": "铁门关市", "count": 7600},
+		{"key": "新疆自治区", "count": 4025},
+		{"key": "哈密地区", "count": 1796},
+		{"key": "北屯市", "count": 1360},
+		{"key": "双河市", "count": 1238},
+		{"key": "阿克苏地区市", "count": 1081},
+		{"key": "新疆自治区直辖县", "count": 1020},
+		{"key": "昆玉市", "count": 943},
+		{"key": "可克达拉市", "count": 920},
+		{"key": "库车市", "count": 455},
+		{"key": "胡杨河市", "count": 35},
+		{"key": "北京市", "count": 5},
+		{"key": "自治区直辖县级行政区划", "count": 3},
+		{"key": "伊犁州市", "count": 1},
+		{"key": "和田", "count": 1},
+		{"key": "重庆", "count": 1459563, "aaabbb": "1"},
+		{"key": "重庆市", "count": 1436528},
+		{"key": "彭水县", "count": 94},
+		{"key": "垫江县", "count": 16},
+		{"key": "重庆", "count": 9},
+		{"key": "石柱土家族自治县", "count": 7},
+		{"key": "丰都县", "count": 5},
+		{"key": "巫溪县", "count": 5},
+		{"key": "城口县", "count": 3},
+		{"key": "奉节县", "count": 2},
+		{"key": "云阳县", "count": 1},
+		{"key": "巫山县", "count": 1},
+		{"key": "忠县", "count": 1},
+		{"key": "秀山土家族苗族自治县", "count": 1},
+		{"key": "贵州", "count": 1448229, "aaabbb": "1"},
+		{"key": "贵阳市", "count": 331903},
+		{"key": "遵义市", "count": 189588},
+		{"key": "黔南布依族苗族自治州", "count": 147396},
+		{"key": "黔东南苗族侗族自治州", "count": 138726},
+		{"key": "毕节市", "count": 132889},
+		{"key": "六盘水市", "count": 98443},
+		{"key": "铜仁市", "count": 88046},
+		{"key": "黔西南布依族苗族自治州", "count": 83106},
+		{"key": "安顺市", "count": 73824},
+		{"key": "贵州市", "count": 2659},
+		{"key": "凯里市", "count": 24},
+		{"key": " 黔西南布依族苗族自治州", "count": 11},
+		{"key": "贵州省", "count": 8},
+		{"key": "黑龙江", "count": 1164337, "aaabbb": "1"},
+		{"key": "哈尔滨市", "count": 377749},
+		{"key": "大庆市", "count": 149320},
+		{"key": "齐齐哈尔市", "count": 91197},
+		{"key": "牡丹江市", "count": 69058},
+		{"key": "佳木斯市", "count": 62370},
+		{"key": "绥化市", "count": 61667},
+		{"key": "鸡西市", "count": 59334},
+		{"key": "七台河市", "count": 44406},
+		{"key": "鹤岗市", "count": 43695},
+		{"key": "黑河市", "count": 42376},
+		{"key": "双鸭山市", "count": 40651},
+		{"key": "伊春市", "count": 32857},
+		{"key": "大兴安岭地区", "count": 16792},
+		{"key": "大兴安岭市", "count": 15},
+		{"key": "哈尔滨", "count": 7},
+		{"key": "黑龙江省", "count": 6},
+		{"key": "绥化", "count": 5},
+		{"key": "农垦总局市", "count": 3},
+		{"key": "双鸭山", "count": 2},
+		{"key": "大庆", "count": 2},
+		{"key": "牡丹江", "count": 1},
+		{"key": "吉林", "count": 954260, "aaabbb": "1"},
+		{"key": "长春市", "count": 339720},
+		{"key": "吉林市", "count": 126511},
+		{"key": "通化市", "count": 68217},
+		{"key": "延边朝鲜族自治州", "count": 63886},
+		{"key": "松原市", "count": 62519},
+		{"key": "白城市", "count": 60969},
+		{"key": "白山市", "count": 55340},
+		{"key": "四平市", "count": 53381},
+		{"key": "辽源市", "count": 36715},
+		{"key": "吉林", "count": 16},
+		{"key": "白城", "count": 4},
+		{"key": "吉林省", "count": 2},
+		{"key": "延边州", "count": 2},
+		{"key": "延吉", "count": 1},
+		{"key": "松原", "count": 1},
+		{"key": "辽源", "count": 1},
+		{"key": "海南", "count": 720772, "aaabbb": "1"},
+		{"key": "海口市", "count": 179605},
+		{"key": "东方市", "count": 98845},
+		{"key": "三亚市", "count": 77256},
+		{"key": "儋州市", "count": 31381},
+		{"key": "文昌市", "count": 26727},
+		{"key": "琼海市", "count": 18232},
+		{"key": "陵水黎族自治县", "count": 17549},
+		{"key": "白沙黎族自治县", "count": 15966},
+		{"key": "乐东黎族自治县", "count": 15217},
+		{"key": "万宁市", "count": 14035},
+		{"key": "临高县", "count": 13624},
+		{"key": "昌江黎族自治县", "count": 13506},
+		{"key": "澄迈县", "count": 13403},
+		{"key": "五指山市", "count": 13253},
+		{"key": "定安县", "count": 10738},
+		{"key": "琼中黎族苗族自治县", "count": 9320},
+		{"key": "保亭黎族苗族自治县", "count": 8862},
+		{"key": "屯昌县", "count": 8232},
+		{"key": "三沙市", "count": 6276},
+		{"key": "海南省直辖县", "count": 2383},
+		{"key": "海南省", "count": 168},
+		{"key": "长沙", "count": 40},
+		{"key": "海口", "count": 6},
+		{"key": "青海", "count": 577879, "aaabbb": "1"},
+		{"key": "西宁市", "count": 198423},
+		{"key": "海西蒙古族藏族自治州", "count": 68038},
+		{"key": "海东市", "count": 61490},
+		{"key": "海南藏族自治州", "count": 45547},
+		{"key": "玉树藏族自治州", "count": 36160},
+		{"key": "海北藏族自治州", "count": 32598},
+		{"key": "黄南藏族自治州", "count": 29613},
+		{"key": "果洛藏族自治州", "count": 29166},
+		{"key": "海西州", "count": 427},
+		{"key": "北京市", "count": 2},
+		{"key": "宁夏", "count": 568655, "aaabbb": "1"},
+		{"key": "银川市", "count": 214652},
+		{"key": "吴忠市", "count": 94042},
+		{"key": "固原市", "count": 58146},
+		{"key": "中卫市", "count": 49298},
+		{"key": "石嘴山市", "count": 40393},
+		{"key": "宁夏回族自治区", "count": 4},
+		{"key": "固原", "count": 2},
+		{"key": "北京市", "count": 1},
+		{"key": "西藏", "count": 237494, "aaabbb": "1"},
+		{"key": "拉萨市", "count": 63551},
+		{"key": "日喀则市", "count": 43698},
+		{"key": "林芝市", "count": 24358},
+		{"key": "昌都市", "count": 23398},
+		{"key": "山南市", "count": 21746},
+		{"key": "那曲市", "count": 21672},
+		{"key": "阿里地区", "count": 13523},
+		{"key": "日喀则", "count": 15},
+		{"key": "昌都", "count": 9},
+		{"key": "那曲", "count": 8},
+		{"key": "山南", "count": 6},
+		{"key": "拉萨", "count": 3},
+		{"key": "阿里", "count": 2},
+		{"key": "香港", "count": 534, "aaabbb": "1"},
+		{"key": "香港岛", "count": 7},
+		{"key": "新界区", "count": 2},
+		{"key": "澳门", "count": 211, "aaabbb": "1"},
+		{"key": "澳门半岛", "count": 2},
+		{"key": "台湾", "count": 126, "aaabbb": "1"},
+		{"key": "河北省", "count": 22, "aaabbb": "1"},
+		{"key": "唐山市", "count": 16},
+		{"key": "邯郸市", "count": 2},
+		{"key": "石家庄市", "count": 1},
+		{"key": "广东省", "count": 21, "aaabbb": "1"},
+		{"key": "佛山市", "count": 7},
+		{"key": "湛江市", "count": 3},
+		{"key": "广州市", "count": 2},
+		{"key": "韶关市", "count": 2},
+		{"key": "中山市", "count": 1},
+		{"key": "揭阳市", "count": 1},
+		{"key": "汕尾市", "count": 1},
+		{"key": "深圳市", "count": 1},
+		{"key": "潮州市", "count": 1},
+		{"key": "山东省", "count": 18, "aaabbb": "1"},
+		{"key": "济宁市", "count": 11},
+		{"key": "威海市", "count": 2},
+		{"key": "临沂市", "count": 1},
+		{"key": "泰安市", "count": 1},
+		{"key": "潍坊市", "count": 1},
+		{"key": "青岛市", "count": 1},
+		{"key": "江苏省", "count": 17, "aaabbb": "1"},
+		{"key": "苏州市", "count": 6},
+		{"key": "扬州市", "count": 5},
+		{"key": "南京市", "count": 1},
+		{"key": "南通市", "count": 1},
+		{"key": "泰州市", "count": 1},
+		{"key": "石家庄市", "count": 1},
+		{"key": "河南省", "count": 14, "aaabbb": "1"},
+		{"key": "郑州市", "count": 5},
+		{"key": "三门峡市", "count": 2},
+		{"key": "信阳市", "count": 2},
+		{"key": "商丘市", "count": 1},
+		{"key": "济源市", "count": 1},
+		{"key": "濮阳市", "count": 1},
+		{"key": "驻马店市", "count": 1},
+		{"key": "安徽省", "count": 11, "aaabbb": "1"},
+		{"key": "安庆市", "count": 3},
+		{"key": "滁州市", "count": 2},
+		{"key": "芜湖市", "count": 2},
+		{"key": "合肥市", "count": 1},
+		{"key": "池州市", "count": 1},
+		{"key": "蚌埠市", "count": 1},
+		{"key": "甘肃省", "count": 9, "aaabbb": "1"},
+		{"key": "平凉市", "count": 3},
+		{"key": "甘南藏族自治州", "count": 2},
+		{"key": "酒泉市", "count": 2},
+		{"key": "庆阳市", "count": 1},
+		{"key": "白银市", "count": 1},
+		{"key": "陕西省", "count": 9, "aaabbb": "1"},
+		{"key": "榆林市", "count": 3},
+		{"key": "西安市", "count": 2},
+		{"key": "宝鸡市", "count": 1},
+		{"key": "延安市", "count": 1},
+		{"key": "汉中市", "count": 1},
+		{"key": "辽宁省", "count": 8, "aaabbb": "1"},
+		{"key": "辽阳市", "count": 3},
+		{"key": "朝阳市", "count": 2},
+		{"key": "本溪市", "count": 2},
+		{"key": "葫芦岛市", "count": 1},
+		{"key": "吉林省", "count": 7, "aaabbb": "1"},
+		{"key": "松原市", "count": 2},
+		{"key": "通化市", "count": 2},
+		{"key": "长春市", "count": 2},
+		{"key": "吉林市", "count": 1},
+		{"key": "四川省", "count": 7, "aaabbb": "1"},
+		{"key": "内江市", "count": 2},
+		{"key": "达州市", "count": 2},
+		{"key": "巴中市", "count": 1},
+		{"key": "广安市", "count": 1},
+		{"key": "成都市", "count": 1},
+		{"key": "浙江省", "count": 7, "aaabbb": "1"},
+		{"key": "温州市", "count": 3},
+		{"key": "嘉兴市", "count": 1},
+		{"key": "成都市", "count": 1},
+		{"key": "衢州市", "count": 1},
+		{"key": "铜陵市", "count": 1},
+		{"key": "山西省", "count": 6, "aaabbb": "1"},
+		{"key": "晋中市", "count": 2},
+		{"key": "太原市", "count": 1},
+		{"key": "忻州市", "count": 1},
+		{"key": "晋城市", "count": 1},
+		{"key": "运城市", "count": 1},
+		{"key": "江西省", "count": 6, "aaabbb": "1"},
+		{"key": "萍乡市", "count": 3},
+		{"key": "南昌市", "count": 1},
+		{"key": "宜春市", "count": 1},
+		{"key": "赣州市", "count": 1},
+		{"key": "湖南省", "count": 6, "aaabbb": "1"},
+		{"key": "益阳市", "count": 2},
+		{"key": "长沙市", "count": 2},
+		{"key": "常德市", "count": 1},
+		{"key": "福建省", "count": 6, "aaabbb": "1"},
+		{"key": "厦门市", "count": 2},
+		{"key": "漳州市", "count": 2},
+		{"key": "南平市", "count": 1},
+		{"key": "宁德市", "count": 1},
+		{"key": "北京市", "count": 5, "aaabbb": "1"},
+		{"key": "北京市", "count": 5},
+		{"key": "湖北省", "count": 5, "aaabbb": "1"},
+		{"key": "宜昌市", "count": 2},
+		{"key": "武汉市", "count": 2},
+		{"key": "荆门市", "count": 1},
+		{"key": "贵州省", "count": 5, "aaabbb": "1"},
+		{"key": "铜仁市", "count": 1},
+		{"key": "重庆市", "count": 5, "aaabbb": "1"},
+		{"key": "重庆市", "count": 5},
+		{"key": "云南省", "count": 3, "aaabbb": "1"},
+		{"key": "保山市", "count": 1},
+		{"key": "大理白族自治州", "count": 1},
+		{"key": "玉溪市", "count": 1},
+		{"key": "海南省", "count": 3, "aaabbb": "1"},
+		{"key": "海口市", "count": 1},
+		{"key": "黑龙江省", "count": 2, "aaabbb": "1"},
+		{"key": "哈尔滨市", "count": 1},
+		{"key": "绥化市", "count": 1},
+	}
+
+	arr = []map[string]interface{}{
+		{"key": "贵州省", "aaabbb": "2"},
+		{"key": "河北省", "aaabbb": "2"},
+		{"key": "广东省", "aaabbb": "2"},
+		{"key": "江苏省", "aaabbb": "2"},
+		{"key": "海南省", "aaabbb": "2"},
+		{"key": "黑龙江省", "aaabbb": "2"},
+		{"key": "哈尔滨市"},
+		{"key": "绥化市"},
+		{"key": "安徽省", "aaabbb": "1"},
+		{"key": "山东省", "aaabbb": "1"},
+		{"key": "河南省", "aaabbb": "1"},
+		{"key": "湖南省", "aaabbb": "1"},
+		{"key": "陕西省", "aaabbb": "1"},
+	}
+	all_data := make(map[string]map[string]string, 0)
+	data := make(map[string]string, 0)
+	area := ""
+	for _, v := range arr {
+		tmp := *qu.ObjToMap(v)
+		isArea := qu.IntAll(tmp["aaabbb"])
+		if isArea > 0 {
+			if len(data) > 0 {
+				all_data[area] = data
+			}
+			data = make(map[string]string, 0)
+			area = qu.ObjToString(tmp["key"])
+		} else {
+			key := qu.ObjToString(tmp["key"])
+			count := qu.IntAll(tmp["count"])
+			if count < 10000 {
+				data[key] = ""
+			}
+		}
+	}
+
+	log.Debug(all_data)
+	return
+	total := int64(0)
+	for area, cityArr := range all_data {
+		for city, _ := range cityArr {
+			cursor, err := esclient.Scan("bidding_v1").Query(es_elastic.NewBoolQuery().Must(es_elastic.NewTermQuery("area", area), es_elastic.NewTermQuery("city", city))).
+				Size(200).Do()
+			if err != nil {
+				log.Debug("cursor", err)
+			}
+			if cursor.Results == nil {
+				log.Debug("results != nil; got nil")
+			}
+			if cursor.Results.Hits == nil {
+				log.Debug("expected results.Hits != nil; got nil")
+			}
+			total += cursor.TotalHits()
+			log.Debug("当前查询正常数:", cursor.TotalHits(), "总数:", total)
+
+			//多线程 - 处理数据
+			pool_es := make(chan bool, 5)
+			wg_es := &sync.WaitGroup{}
+			pages, numDocs := 0, 0
+			for {
+				searchResult, err := cursor.Next()
+				if err != nil {
+					if err.Error() == "EOS" {
+						break
+					} else {
+						log.Debug("cursor searchResult", err)
+					}
+				}
+				pages++
+				isLog := false
+				for _, hit := range searchResult.Hits.Hits {
+					tmp := make(map[string]interface{})
+					err := json.Unmarshal(*hit.Source, &tmp)
+					if err != nil {
+						log.Debug("json Unmarshal error")
+						continue
+					}
+					if !isLog && numDocs%10000 == 0 {
+						//log.Debug("当前条数:", numDocs, "Es数据:", tmp["_id"])
+						isLog = true
+					}
+
+					numDocs++
+					area := qu.ObjToString(tmp["area"])
+					city := qu.ObjToString(tmp["city"])
+					district := qu.ObjToString(tmp["district"])
+					tmpid := qu.ObjToString(tmp["_id"])
+					pool_es <- true
+					wg_es.Add(1)
+					go func(area string, city string, district string, tmpid string) {
+						defer func() {
+							<-pool_es
+							wg_es.Done()
+						}()
+						if city != "" || district != "" {
+							save_mgo.Save("zktest_err_err_data", map[string]interface{}{
+								"_id":      StringTOBsonId(tmpid),
+								"area":     area,
+								"city":     city,
+								"district": district,
+							})
+						}
+					}(area, city, district, tmpid)
+				}
+			}
+			wg_es.Wait()
+		}
+	}
+
+	log.Debug("is all over :", total)
+
+}
+
+// 导出差额数据--省市区 bidding 与 85
+func exportErrAreaCityDistrictData() {
+
+	//导出相关-分包数据-ck!=1 , 包含,
+	sess := python_mgo.GetMgoConn()
+	defer python_mgo.DestoryMongoConn(sess)
+	q, total, iserr := map[string]interface{}{}, 0, 0
+	is_pool := make(chan bool, 20)
+	is_wg := &sync.WaitGroup{}
+	//repair_acd_data
+	it := sess.DB(python_mgo.DbName).C("bidding_back").Find(&q).Select(map[string]interface{}{
+		"area":        1,
+		"city":        1,
+		"district":    1,
+		"extracttype": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("index", total, iserr, tmp["_id"])
+		}
+		extracttype := qu.IntAll(tmp["extracttype"])
+		if extracttype == -1 {
+			tmp = make(map[string]interface{})
+			continue
+		}
+		//开线程-去校验
+		is_pool <- true
+		is_wg.Add(1)
+		go func(tmp map[string]interface{}) {
+			defer func() {
+				<-is_pool
+				is_wg.Done()
+			}()
+			//更新-
+			area_old := qu.ObjToString(tmp["area"])
+			city_old := qu.ObjToString(tmp["city"])
+			district_old := qu.ObjToString(tmp["district"])
+			tmpid := BsonTOStringId(tmp["_id"])
+
+			data := save_mgo.FindById("result_20210108", tmpid)
+			if data != nil && len(data) > 2 {
+				new_area := qu.ObjToString(data["area"])
+				new_city := qu.ObjToString(data["city"])
+				new_district := qu.ObjToString(data["district"])
+				if area_old != new_area || city_old != new_city || district_old != new_district {
+					iserr++
+					save_mgo.Save("zktest_acd_data", tmp)
+				}
+			}
+		}(tmp)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, iserr)
+}
+
+// 导出-长度数据
+func exportBuyerWinnerLengthData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gte": StringTOBsonId("610573800000000000000000"),
+		},
+	}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("result_20210108").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index", total, isok, tmp["_id"])
+		}
+		repeat := qu.IntAll(tmp["repeat"])
+		if repeat > 0 {
+			tmp = make(map[string]interface{})
+			continue
+		}
+		buyer := qu.ObjToString(tmp["buyer"])
+		winner := qu.ObjToString(tmp["winner"])
+		if (utf8.RuneCountInString(buyer) < 5 && buyer != "") ||
+			(utf8.RuneCountInString(winner) < 5 && winner != "") {
+			isok++
+			save_mgo.Save("zktest_buyer_stand_data", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("export unit is over", total, isok)
+}
+
+// 导出新城市数据
+func exportNewCKPackageData() {
+	//导出相关-分包数据-ck!=1 , 包含,
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"ck_s_winner": map[string]interface{}{
+			"$ne": 1,
+		},
+	}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("zktest_package_data").Find(&q).Select(map[string]interface{}{
+		"s_winner": 1,
+		"href":     1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		s_winner := qu.ObjToString(tmp["s_winner"])
+		if strings.Contains(s_winner, ",") {
+			data := save_mgo.FindById("zktest_package_data_old", BsonTOStringId(tmp["_id"]))
+			old_s_winner := qu.ObjToString(data["s_winner"])
+			if old_s_winner != s_winner {
+				dict := tmp
+				jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+				dict["jyhref"] = jyhref
+				dict["old_s_winner"] = old_s_winner
+				save_mgo.Save("111222", dict)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, isok)
+}
+
+// 根据id 导出指定数据
+func exportFieldScoreIDBIdding() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	ck_data := make(map[string]map[string]interface{}, 0)
+	it := sess.DB(save_mgo.DbName).C("zktest_fieldscore_data_new_ck").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		key_id := BsonTOStringId(tmp["_id"])
+		ck_data[key_id] = tmp
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("结束:", total, len(ck_data))
+
+	fieldArr := []string{"buyer", "s_winner", "budget", "bidamount", "projectname", "projectcode"}
+	total = 0
+	it = sess.DB(save_mgo.DbName).C("zktest_fieldscore_data_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		key_id := BsonTOStringId(tmp["_id"])
+		field_score := *qu.ObjToMap(tmp["field_score"])
+		dict := make(map[string]interface{})
+		dict["_id"] = tmp["_id"]
+		dict["href"] = tmp["href"]
+		dict["subtype"] = tmp["subtype"]
+		for _, v := range fieldArr {
+
+			//当前字段分
+			score := int64(-1)
+			score_data := *qu.ObjToMap(field_score[v])
+			if score_data != nil {
+				score = qu.Int64All(score_data["score"])
+			}
+
+			isOK := 0
+			if v == "budget" || v == "bidamount" {
+				value := qu.Int64All(tmp[v])
+				ck_key := fmt.Sprintf("ck_%s", v)
+				ck_num := qu.Int64All(ck_data[key_id][ck_key])
+				if ck_num > 0 { //比对两边的值
+					if value == qu.Int64All(ck_data[key_id][v]) {
+						isOK = 1
+					} else {
+						isOK = -1
+					}
+				}
+			} else {
+				value := qu.ObjToString(tmp[v])
+				ck_key := fmt.Sprintf("ck_%s", v)
+				ck_num := qu.Int64All(ck_data[key_id][ck_key])
+				if ck_num > 0 { //比对两边的值
+					if value == qu.ObjToString(ck_data[key_id][v]) {
+						isOK = 1
+					} else {
+						isOK = -1
+					}
+				}
+			}
+
+			key_1 := fmt.Sprintf("%s_s", v)
+			key_2 := fmt.Sprintf("%s_r", v)
+			desc := "未标"
+			if isOK == 1 {
+				desc = "正确"
+			} else if isOK == -1 {
+				desc = "错误"
+			}
+			if score == -1 {
+				desc = ""
+			}
+			dict[key_1] = score
+			dict[key_2] = desc
+		}
+
+		save_mgo.Save("111", dict)
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("结束:", total, len(ck_data))
+
+}
+
+// 导出多站点数据
+func exporMulSiteData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Sort("-_id").Iter()
+	siteMap, isok, isZhao, isZhong := make(map[string]int, 0), 0, 0, 0
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total)
+		}
+
+		if isok >= 500 {
+			break
+		}
+		site := qu.ObjToString(tmp["site"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		subtype := qu.ObjToString(tmp["subtype"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		dict := tmp
+		dict["jyhref"] = jyhref
+		if subtype == "中标" || subtype == "成交" || subtype == "合同" {
+			num_site := qu.IntAll(siteMap[site])
+			if num_site < 2 && isZhong < 300 {
+				isok++
+				isZhong++
+				siteMap[site] = num_site + 1
+				save_mgo.Save("zktest_fieldscore_data", dict)
+			}
+		} else if subtype == "招标" || subtype == "邀标" || subtype == "询价" ||
+			subtype == "竞谈" || subtype == "单一" || subtype == "竞价" {
+			num_site := qu.IntAll(siteMap[site])
+			if num_site < 2 && isZhao < 200 {
+				isok++
+				siteMap[site] = num_site + 1
+				save_mgo.Save("zktest_fieldscore_data", dict)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+	log.Debug("is site ", len(siteMap))
+}
+
+// 记录字段-来源
+func dealWithFieldSourceData() {
+	dict1 := make(map[string]interface{}, 0)
+	dict2 := make(map[string]interface{}, 0)
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zk_field_score_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		source := *qu.ObjToMap(tmp["field_source"])
+		for _, v := range source {
+			if v == nil {
+				continue
+			}
+			source_data := *qu.ObjToMap(v)
+			ext_type := qu.ObjToString(source_data["ext_type"])
+			ext_from := qu.ObjToString(source_data["ext_from"])
+
+			if dict1[ext_type] == nil {
+				dict1[ext_type] = 1
+			}
+
+			if dict2[ext_from] == nil {
+				dict2[ext_from] = 1
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("结束:", total, dict1, dict2)
+
+}
+func repairDataBWA1019() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_extract_bwa_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total)
+		}
+		buyer := qu.ObjToString(tmp["buyer"])
+		agency := qu.ObjToString(tmp["agency"])
+		winner := qu.ObjToString(tmp["winner"])
+		s_winner := qu.ObjToString(tmp["s_winner"])
+		dict := map[string]interface{}{
+			"buyer":    buyer,
+			"agency":   agency,
+			"winner":   winner,
+			"s_winner": s_winner,
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		save_mgo.UpdateById("result_20210108", tmpid, map[string]interface{}{
+			"$set": dict,
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("结束:", total)
+}
+
+// 导出sh_shsggzyjyzx_zfcg 相关异常数据-准备修复
+func dealWithSpiderDataBWA() {
+	//任意俩字段一致的数据-重新抽取
+	log.Debug("导出sh_shsggzyjyzx_zfcg下,异常数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_spider_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		//模型:行政级别-项目名称-物品-数量-总金额
+		if total%10000 == 0 {
+			log.Debug("current index ", total, "~", isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data := save_mgo.FindById("bidding", tmpid)
+		if data != nil && len(data) > 2 {
+			isok++
+			save_mgo.Save("zktest_extract_spider_data", data)
+		}
+
+		//save_mgo.Save("zktest_spider_data", map[string]interface{}{
+		//	"_id":tmp["_id"],
+		//})
+		//buyer:=qu.ObjToString(tmp["buyer"])
+		//agency:=qu.ObjToString(tmp["agency"])
+		//winner:=qu.ObjToString(tmp["winner"])
+		//
+		//if buyer!=""&&agency!=""&&(strings.Contains(buyer,agency) || strings.Contains(agency,buyer)){
+		//	isok++
+		//	tmp = make(map[string]interface{})
+		//	continue
+		//}
+		//
+		//if buyer!=""&&winner!=""&&(strings.Contains(buyer,winner) || strings.Contains(winner,buyer)){
+		//	isok++
+		//	tmp = make(map[string]interface{})
+		//	continue
+		//}
+		//
+		//if winner!=""&&agency!=""&&(strings.Contains(winner,agency) || strings.Contains(agency,winner)){
+		//	isok++
+		//	tmp = make(map[string]interface{})
+		//	continue
+		//}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", " 总计:", total, isok)
+}
+
+// 导出训练模型-分数,数据
+func exportModelScoreData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+
+	it := sess.DB(save_mgo.DbName).C("zktest_model_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		//模型:行政级别-项目名称-物品-数量-总金额
+		if total%22 == 0 {
+			if purchasinglist, ok := tmp["purchasinglist"].(primitive.A); ok {
+				if len(purchasinglist) > 0 { //验证标的物
+					items, numbers, moneys, istrue := "", int64(0), int64(0), true
+					lists := qu.ObjArrToMapArr(purchasinglist)
+					for k, v := range lists {
+						item := qu.ObjToString(v["itemname"])
+						number := qu.Int64All(v["number"])
+						money := qu.Int64All(v["totalprice"])
+						if item == "" || number == 0 {
+							istrue = false
+							break
+						}
+						if k == 0 {
+							items = item
+							numbers = number
+							moneys = money
+						} else {
+							items = items + " " + item
+							numbers = numbers + number
+							moneys = moneys + money
+						}
+					}
+					if istrue {
+						if qu.Int64All(tmp["bidamount"]) != 0 {
+							moneys = qu.Int64All(tmp["bidamount"])
+						}
+
+						if moneys > 0 {
+							isok++
+							save_mgo.Save("zk_zk_zk_model", map[string]interface{}{
+								"buyer":   tmp["buyer"],
+								"name":    tmp["projectname"],
+								"items":   items,
+								"numbers": numbers,
+								"money":   moneys,
+								"href":    tmp["href"],
+								"_id":     tmp["_id"],
+							})
+						}
+					}
+				} else {
+
+					if qu.Int64All(tmp["bidamount"]) != 0 {
+						isok++
+						save_mgo.Save("zk_zk_zk_model", map[string]interface{}{
+							"buyer":   tmp["buyer"],
+							"name":    tmp["projectname"],
+							"items":   "",
+							"numbers": 1,
+							"money":   qu.Int64All(tmp["bidamount"]),
+							"href":    tmp["href"],
+							"_id":     tmp["_id"],
+						})
+					}
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", " 总计:", total, isok)
+}
+
+// 刷站点类型数据
+func updateSiteTypeData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	isok := 0
+	it := sess.DB(save_mgo.DbName).C("zktest_score_data").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index ", total)
+		}
+		data := save_mgo.FindOne("spider_site", map[string]interface{}{
+			"site": qu.ObjToString(tmp["site"]),
+		})
+		if data != nil {
+			isok++
+			save_mgo.UpdateById("zktest_score_data", BsonTOStringId(tmp["_id"]), map[string]interface{}{
+				"$set": map[string]interface{}{
+					"site_type": qu.ObjToString(data["site_type"]),
+				},
+			})
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", " 总计:", total, isok)
+}
+
+// 分析打分
+func analysisScoreData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	total, iserr, isok := 0, 0, 0
+	err_data := map[string]int{
+		"ck_buyer":       0,
+		"ck_s_winner":    0,
+		"ck_budget":      0,
+		"ck_bidamount":   0,
+		"ck_projectcode": 0,
+	}
+	q := map[string]interface{}{
+		"core_score": map[string]interface{}{
+			"$gte": 60,
+		},
+		"error_score": map[string]interface{}{
+			"$lte": 0,
+		},
+		"abnormal_score": map[string]interface{}{
+			"$lte": 0,
+		},
+	}
+	ck_arr := []string{"ck_buyer", "ck_s_winner", "ck_budget", "ck_bidamount", "ck_projectcode"}
+	site_type_arr := []string{
+		"公共资源",
+		"其他",
+		"政府采购",
+		"社会采购类",
+		"企业门户/平台",
+		"银行",
+		"代理机构",
+		"政府门户",
+		"",
+		"军队",
+		"学校",
+		"人民政府网",
+		"医疗机构",
+		"工程建设类",
+		"证券",
+		"保险",
+	}
+	isType := true
+	if isType {
+		for _, site_type := range site_type_arr {
+			q["site_type"] = site_type
+			total, iserr = 0, 0
+			it := sess.DB(save_mgo.DbName).C("zktest_score_data").Find(&q).Iter()
+			for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+				tmpid := BsonTOStringId(tmp["_id"])
+				isck := false
+				data := save_mgo.FindOne("zktest_markwork_data", map[string]interface{}{
+					"id": tmpid,
+				})
+				if data != nil && len(data) > 2 {
+					for _, v := range ck_arr {
+						ck := qu.Int64All(data[v])
+						if ck > 1 && v != "ck_budget" {
+							isck = true
+						}
+					}
+				}
+				if isck {
+					iserr++
+				}
+				tmp = make(map[string]interface{})
+			}
+			if total > 0 {
+				fmt.Println("is over ", site_type, " 总计:", total, iserr)
+			}
+		}
+	} else {
+		it := sess.DB(save_mgo.DbName).C("zktest_score_data").Find(&q).Iter()
+		for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+			tmpid := BsonTOStringId(tmp["_id"])
+			isck := false
+			data := save_mgo.FindOne("zktest_markwork_data", map[string]interface{}{
+				"id": tmpid,
+			})
+			if data != nil && len(data) > 2 {
+				for _, v := range ck_arr {
+					ck := qu.Int64All(data[v])
+					if ck > 1 {
+						isck = true
+						err_data[v] = err_data[v] + int(1)
+					}
+				}
+			}
+			if isck {
+				iserr++
+			} else {
+				isok++
+			}
+			tmp = make(map[string]interface{})
+		}
+		log.Debug("is over ", " 总计:", total, isok, iserr, err_data)
+	}
+
+}
+
+// 导出人工标注原始抽取数据
+func exportMarkWorkData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_markwork_id").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		tmpid := qu.ObjToString(tmp["id"])
+		data := save_mgo.FindById("result_20210108", tmpid)
+		if data != nil && len(data) > 2 {
+			save_mgo.Save("zktest_markwork_data", data)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", " 总计:", total)
+}
+
+// 合并人工标注数据
+func mergeMarkWorkData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+
+	arr := []string{
+		"20210924Shdx_mf",
+		"markwork_wb",
+		"markwork_wb_2_shdx",
+		"20210924Shdx_nb",
+		"20210928Shdx_nb_1",
+		"markwork_wb_mf",
+		"markwork_jy_lx",
+		"markwork_wb_mf_bz",
+	}
+	for _, coll := range arr {
+		q, total := map[string]interface{}{}, 0
+		it := sess.DB(save_mgo.DbName).C(coll).Find(&q).Iter()
+		for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+			tmpid := BsonTOStringId(tmp["_id"])
+			jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+			dict := tmp
+			delete(dict, "_id")
+			dict["jyhref"] = jyhref
+			save_mgo.Save("zktest_mark_data", dict)
+			tmp = make(map[string]interface{})
+		}
+		log.Debug("is over ", coll, " 总计:", total)
+	}
+}
+
+// 导出九江银行数据
+func exportJJYHwinerdata() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zktest_jjyhwinner_data").Find(&q).Iter()
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		tmpid := BsonTOStringId(tmp["_id"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", tmpid))
+		save_mgo.UpdateById("zktest_jjyhwinner_data", tmpid, map[string]interface{}{
+			"$set": map[string]interface{}{
+				"jyhref": jyhref,
+			},
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+}
+
+// 整合buyer敏感词库
+func finishingEnableBuyerData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"enabled": 1,
+	}, 0
+	it := sess.DB(save_mgo.DbName).C("zk_sensitive_buyer_new_err").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index ", total)
+		}
+		name := qu.ObjToString(tmp["name"])
+		save_mgo.Save("zk_sensitive_buyer", map[string]interface{}{
+			"name":    name,
+			"enabled": 1,
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("zk_sensitive_buyer is over ", total)
+}
+
+// 规则筛选出,异常单位
+func isHan(s string) bool {
+	for _, c := range s {
+		if unicode.Is(unicode.Han, c) || unicode.IsNumber(c) || unicode.IsLetter(c) || c == '(' || c == ')' || c == '(' || c == ')' || c == '《' || c == '》' || c == '·' || c == '“' || c == '”' {
+			continue
+		} else {
+			return false
+		}
+	}
+	return true
+}
+func chooseUnEnableData() {
+	var unstart *regexp.Regexp = regexp.MustCompile("^([\u4e00-\u9fa5])")
+	var uncon *regexp.Regexp = regexp.MustCompile("(园|政府|集团|公司|有限|合伙|企|院|学|局|处)")
+	var unlen *regexp.Regexp = regexp.MustCompile("^(.{4,})$")
+	var unReg *regexp.Regexp = regexp.MustCompile("^.*(公司|学(校)?|博物馆|联合社|合作社|监狱|办公厅|电视台|集团|机构|企业|办公室|委员会|联社|厂|场|院|所|店|中心|局|站|城|处|行|科|部|队|联合(会|体)|工作室)$")
+	var unhead *regexp.Regexp = regexp.MustCompile("^(某部|省|市|区|县|州|自治区|自治州|街道|名称)")
+
+	var unenableReg1 *regexp.Regexp = regexp.MustCompile("^([\u4e00-\u9fa5]{1,2}(责任|有限|有限股份|有限责任|实业)公司|.*(某部|先生|女士|小姐)|工程技术处)$")
+	var unenableReg2 *regexp.Regexp = regexp.MustCompile("(\\?|?|单位|#|xxxx|\\*\\*|%|万元|设计企业|免费|代表|代码标识|盖电子|测试测试|删除|错误|吊销|注销|发起人|待清理|&#|护照号|身份证号|\" +\n\t\"法人|&nbsp|国家拨入|借款|积累资金|认股人|--|、|&|`|美元)")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	pool := make(chan bool, 1)
+	wg := &sync.WaitGroup{}
+	collection := "zk_sensitive_buyer_new_err"
+	it := sess.DB(save_mgo.DbName).C(collection).Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index ", total, isok)
+		}
+		name := qu.ObjToString(tmp["name"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		pool <- true //开线程
+		wg.Add(1)
+		go func(name string, tmpid string) {
+			defer func() {
+				<-pool
+				wg.Done()
+			}()
+			//if isHan(name) {
+			//	if unenableReg1.MatchString(name)||unhead.MatchString(name) {
+			//		save_mgo.UpdateById(collection,tmpid, map[string]interface{}{
+			//			"$set": map[string]interface{}{
+			//				"enabled":0,
+			//			},
+			//		})
+			//	}else {
+			//		isok++
+			//	}
+			//}else {
+			//	save_mgo.UpdateById(collection,tmpid, map[string]interface{}{
+			//		"$set": map[string]interface{}{
+			//			"enabled":0,
+			//		},
+			//	})
+			//}
+			//return
+			//打印不全为中卫的name
+			if isHan(name) {
+				if unstart.MatchString(name) && unlen.MatchString(name) &&
+					(uncon.MatchString(name) || unReg.MatchString(name)) &&
+					!unhead.MatchString(name) {
+					if unenableReg1.MatchString(name) || unenableReg2.MatchString(name) {
+						save_mgo.UpdateById(collection, tmpid, map[string]interface{}{
+							"$set": map[string]interface{}{
+								"enabled": 0,
+							},
+						})
+					} else {
+						isok++
+					}
+				} else {
+					save_mgo.UpdateById(collection, tmpid, map[string]interface{}{
+						"$set": map[string]interface{}{
+							"enabled": 0,
+						},
+					})
+				}
+			} else {
+				save_mgo.UpdateById(collection, tmpid, map[string]interface{}{
+					"$set": map[string]interface{}{
+						"enabled": 0,
+					},
+				})
+			}
+		}(name, tmpid)
+		tmp = make(map[string]interface{})
+	}
+
+	wg.Wait()
+	log.Debug(collection, " is over ", total, isok)
+}
+
+// 处理修复金额相关数据
+func modifyTheBidamountData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("1111").Find(&q).Iter()
+
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index ", total, isok)
+		}
+		jyhref := qu.ObjToString(tmp["jybxhref"])
+		new_url := strings.ReplaceAll(jyhref, "https://www.jianyu360.cn/article/content/", "")
+		new_url = strings.ReplaceAll(new_url, ".html", "")
+		var Decode = qu.CommonDecodeArticle("content", new_url)
+		tmpid := Decode[0]
+		if tmpid != "" {
+			save_mgo.FindById("zk_0926_bidamount_data_new", tmpid)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+}
+
+// 导出敏感词库-验证数据
+func exportSensitiveTestData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	it := sess.DB(save_mgo.DbName).C("data_tongji_20210916_bidding_new").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index ", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		buyer := qu.ObjToString(tmp["buyer"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+
+		if buyer == "" {
+			data := save_mgo.FindById("data_tongji_20210916", tmpid)
+			if data != nil && len(data) > 2 {
+				isok++
+				save_mgo.Save("zk_sensitive_test_data", map[string]interface{}{
+					"_id":          tmp["_id"],
+					"detail":       data["detail"],
+					"title":        data["title"],
+					"href":         tmp["href"],
+					"jyhref":       jyhref,
+					"source_buyer": data["buyer"],
+				})
+			}
+		}
+
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isok)
+}
+
+// 导出-用于敏感词库识别的采购表
+func exportSensitiveBuyerData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("buyer_err").Find(&q).Select(map[string]interface{}{
+		"name": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index ", total)
+		}
+		name := qu.ObjToString(tmp["name"])
+		save_mgo.Save("zk_sensitive_buyer_new_err", map[string]interface{}{
+			"name":    name,
+			"enabled": 0,
+		})
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("buyer_err is over ", total)
+}
+
+// 筛选历史名字
+func chooseEnableHistoryData() {
+	tmp_mgo := &MongodbSim{
+		MongodbAddr: "172.17.4.181:27001",
+		DbName:      "mixdata",
+		Size:        10,
+		UserName:    "",
+		Password:    "",
+	}
+	tmp_mgo.InitPool()
+
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"enabled": 0,
+	}, 0, 0
+	pool := make(chan bool, 8)
+	wg := &sync.WaitGroup{}
+	it := sess.DB(save_mgo.DbName).C("zk_sensitive_buyer").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index ", total, isok)
+		}
+		name := qu.ObjToString(tmp["name"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		pool <- true //开线程
+		wg.Add(1)
+		go func(name string, tmpid string) {
+			defer func() {
+				<-pool
+				wg.Done()
+			}()
+			data := tmp_mgo.FindOne("company_history_name", map[string]interface{}{
+				"history_name": name,
+			})
+			if data != nil && len(data) > 2 {
+				isok++
+				save_mgo.UpdateById("zk_sensitive_buyer", tmpid, map[string]interface{}{
+					"$set": map[string]interface{}{
+						"enabled": 1,
+					},
+				})
+			}
+		}(name, tmpid)
+		tmp = make(map[string]interface{})
+	}
+
+	wg.Wait()
+	log.Debug("is over ", total, "-", isok)
+
+}
+
+// 筛选异常buyer数据
+func chooseEnableBuyerData() {
+	//去除 zk_sensitive_buyer 空格
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	pool := make(chan bool, 15)
+	wg := &sync.WaitGroup{}
+	it := sess.DB(save_mgo.DbName).C("zk_sensitive_buyer").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index ", total, isok)
+		}
+		name := qu.ObjToString(tmp["name"])
+		enabled := qu.Int64All(tmp["enabled"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if enabled == 1 {
+			//开线程
+			pool <- true
+			wg.Add(1)
+			go func(name string, tmpid string) {
+				defer func() {
+					<-pool
+					wg.Done()
+				}()
+				data := save_mgo.FindOne("qyxy_std", map[string]interface{}{
+					"company_name": name,
+				})
+				if data == nil || len(data) <= 0 {
+					isok++
+					save_mgo.UpdateById("zk_sensitive_buyer", tmpid, map[string]interface{}{
+						"$set": map[string]interface{}{
+							"enabled": 0,
+						},
+					})
+				}
+			}(name, tmpid)
+		} else {
+			isok++
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	wg.Wait()
+	log.Debug("is over ", total, "-", isok)
+}
+
+// 导出特殊日期-数据
+func exportSpecifiedTimeData() {
+
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	//jyhref:= fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+
+	it := sess.DB(save_mgo.DbName).C("zktest_bidtime_data").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total)
+		}
+		dict := make(map[string]interface{}, 0)
+		dict["_id"] = tmp["_id"]
+		dict["href"] = qu.ObjToString(tmp["href"])
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+		dict["jyhref"] = jyhref
+		bidopentime := qu.Int64All(tmp["bidopentime"])
+		bidendtime := qu.Int64All(tmp["bidendtime"])
+		timeLayout := "2006-01-02 15:04:05"
+		if bidopentime > 0 {
+			bidopentime_str := time.Unix(bidopentime, 0).Format(timeLayout) //设置时间戳 使用模板格式化为日期字符串
+			dict["bidopentime"] = bidopentime_str
+		}
+		if bidendtime > 0 {
+			bidendtime_str := time.Unix(bidendtime, 0).Format(timeLayout) //设置时间戳 使用模板格式化为日期字符串
+			dict["bidendtime"] = bidendtime_str
+		}
+
+		save_mgo.Save("zktest_bidtime_errdata", dict)
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total)
+}
+
+// 导出-错误数据
+func exportErrBidtimeData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isopen, isend := map[string]interface{}{}, 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C("data_tongji_20210916_bidding_new").Find(&q).Sort("_id").Iter()
+	siteMap := make(map[string]int, 0)
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isopen, isend)
+		}
+		isSave := false
+		site := qu.ObjToString(tmp["site"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if wrong_key_item, ok := tmp["wrong_key_item"].(primitive.A); ok {
+			if len(wrong_key_item) > 0 {
+				for _, v := range wrong_key_item {
+					if v == "bidopentime" {
+						num_site := qu.IntAll(siteMap[site])
+						if num_site < 3 {
+							isSave = true
+							siteMap[site] = num_site + 1
+							isopen++
+							//保存
+							data := save_mgo.FindById("data_tongji_20210916", tmpid)
+							if data != nil && len(data) > 2 {
+								save_mgo.Save("zktest_bidtime_data", data)
+							}
+						}
+						break
+					}
+				}
+
+				if !isSave {
+					for _, v := range wrong_key_item {
+						if v == "bidendtime" {
+							num_site := qu.IntAll(siteMap[site])
+							if num_site < 3 {
+								siteMap[site] = num_site + 1
+								isend++
+								data := save_mgo.FindById("data_tongji_20210916", tmpid)
+								if data != nil && len(data) > 2 {
+									save_mgo.Save("zktest_bidtime_data", data)
+								}
+							}
+							break
+						}
+					}
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("is over ", total, "~opentime:", isopen, "~endtime", isend)
+	log.Debug("is site ", len(siteMap))
+}
+
+// 修复bidding + 抽取表信息-城市相关
+func repairExtractBiddingData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zkrepair_city_data").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok)
+		}
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		dict := map[string]interface{}{
+			"area":     area,
+			"city":     city,
+			"district": district,
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		if area != "浙江" && area != "全国" {
+			isok++
+			mgo_data := save_mgo.FindById("result_20210108", tmpid)
+			if mgo_data != nil && len(mgo_data) > 2 {
+				save_mgo.UpdateById("result_20210108", tmpid, map[string]interface{}{
+					"$set": dict,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("结束:", total, isok)
+}
+
+// 修复索引信息-城市相关
+func repairEsCityData() {
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	//测试
+	//area:="云南"
+	//city := ""
+	//district:=""
+	//updateStr := `ctx._source.area=`+ `"`+area+`"`+`;`+`ctx._source.city=`+ `"`+city+`"`+`;`+`ctx._source.district=`+ `"`+district+`"`+`;`
+	//elastic.Update("bidding","bidding","5d8978a9a5cb26b9b795bdf7", updateStr)
+	//return
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zk_repair_city_data_0917").Find(&q).Sort("_id").Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, isok)
+		}
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		tmpid := BsonTOStringId(tmp["_id"])
+		if area != "浙江" && area != "全国" {
+			dataArr := *elastic.GetById("bidding", "bidding", tmpid)
+			if len(dataArr) > 0 {
+				isok++
+				updateStr := `ctx._source.area=` + `"` + area + `"` + `;` + `ctx._source.city=` + `"` + city + `"` + `;` + `ctx._source.district=` + `"` + district + `"` + `;`
+				elastic.Update("bidding", "bidding", tmpid, updateStr)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("结束:", total, isok)
+}
+
+// 导出日期相关数据
+func exportBidOpenEndtimeData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{
+		"comeintime": map[string]interface{}{
+			"$gt":  1630425600,
+			"$lte": 1631635200,
+		},
+	}, 0, 0
+	isSave := false
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if isok >= 400 {
+			break
+		}
+		if total%2000 == 0 {
+			isSave = false
+			log.Debug("current index", total, isok)
+		} else {
+			if isSave {
+				tmp = make(map[string]interface{})
+				continue
+			}
+		}
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+		tmp["jyhref"] = jyhref
+		subtype := qu.ObjToString(tmp["subtype"])
+		bidopentime := qu.Int64All(tmp["bidopentime"])
+		bidendtime := qu.Int64All(tmp["bidendtime"])
+		if isok < 400 && !strings.Contains(qu.ObjToString(tmp["href"]), "www.gdydb2b.com") && bidopentime == 0 && bidendtime == 0 &&
+			(subtype == "招标" || subtype == "邀标" || subtype == "询价" || subtype == "竞谈" || subtype == "单一" || subtype == "竞价" || subtype == "变更") {
+			isok++
+			isSave = true
+			save_mgo.Save("zktest_bidtime_data", tmp)
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("export date is over", total, isok)
+}
+
+// 根据-表-导出相关抽取数据
+func exportRepairCityData0917() {
+	log.Debug("导出相关城市-获取数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isok := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zk_repair_city_id_0917").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("current index", total, isok)
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		dict := save_mgo.FindById("bidding", tmpid)
+		if dict != nil && len(dict) > 2 {
+			save_mgo.Save("zk_repair_city_data_0917", dict)
+			isok++
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("export unit is over", total, isok)
+}
+
+// 导出-单位相关数据-间隔
+func exportUnitBuyerWinnerData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"_id": map[string]interface{}{
+			"$gt":  StringTOBsonId("6117e8800000000000000000"),
+			"$lte": StringTOBsonId("612baf000000000000000000"),
+		},
+	}, 0
+
+	isWinner, isBuyer, isUnit := 0, 0, 0
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	it := sess.DB(save_mgo.DbName).C("bidding").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%200 == 0 {
+			log.Debug("current index", total)
+		} else {
+			tmp = make(map[string]interface{})
+			continue
+		}
+
+		subtype := qu.ObjToString(tmp["subtype"])
+		winner := qu.ObjToString(tmp["winner"])
+		buyer := qu.ObjToString(tmp["buyer"])
+
+		jyhref := fmt.Sprintf(Url, qu.CommonEncodeArticle("content", BsonTOStringId(tmp["_id"])))
+		tmp["jyhref"] = jyhref
+		if isWinner >= 150 && isBuyer >= 150 && isUnit >= 200 {
+			break
+		}
+		if isWinner < 150 && winner == "" && (subtype == "中标" || subtype == "成交" || subtype == "合同") {
+			isWinner++
+			save_mgo.Save("zktest_unit_data", tmp)
+			tmp = make(map[string]interface{})
+			continue
+		}
+		if isBuyer < 150 && buyer == "" && (subtype == "招标" || subtype == "邀标" || subtype == "询价" || subtype == "竞谈" || subtype == "单一" || subtype == "竞价" || subtype == "其他") {
+			isBuyer++
+			save_mgo.Save("zktest_unit_data", tmp)
+			tmp = make(map[string]interface{})
+			continue
+		}
+
+		if isUnit < 200 && buyer != "" && winner != "" {
+			isUnit++
+			save_mgo.Save("zktest_unit_data", tmp)
+			tmp = make(map[string]interface{})
+			continue
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("export unit is over", total, isBuyer+isWinner+isUnit)
+}
+
+// 导出异常采购单位 - 数据
+func exportErrBuyerRepeatData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{}, 0
+	it := sess.DB(save_mgo.DbName).C("zk_repeat_errbuyer_data_0908").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total)
+		}
+		repeat_id := qu.ObjToString(tmp["repeat_id"])
+		data := save_mgo.FindById("result_20210108", repeat_id)
+		if qu.ObjToString(data["buyer"]) != qu.ObjToString(tmp["buyer"]) {
+			dict := map[string]interface{}{
+				"buyer_1": qu.ObjToString(data["buyer"]),
+				"href_1":  qu.ObjToString(data["href"]),
+				"title_1": qu.ObjToString(data["title"]),
+			}
+			save_mgo.UpdateById("zk_repeat_errbuyer_data_0908", BsonTOStringId(tmp["_id"]), map[string]interface{}{
+				"$set": dict,
+			})
+		}
+		tmp = make(map[string]interface{})
+	}
+}
+
+// 修复城市数据
+func repairExtractCityData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, ok_1, ok_2 := map[string]interface{}{}, 0, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zk_repair_city_data_0902_0907").Find(&q).Select(map[string]interface{}{
+		"area":     1,
+		"city":     1,
+		"district": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("current index", total, ok_1, ok_2)
+		}
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		dict := map[string]interface{}{
+			"area":     area,
+			"city":     city,
+			"district": district,
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data_1 := save_mgo.FindById("result_20210108", tmpid)
+		if data_1 != nil && len(data_1) > 0 {
+			ok_1++
+			save_mgo.UpdateById("result_20210108", tmpid, map[string]interface{}{
+				"$set": dict,
+			})
+		} else {
+			data_2 := save_mgo.FindById("result_20210109", tmpid)
+			if data_2 != nil && len(data_2) > 0 {
+				ok_2++
+				save_mgo.UpdateById("result_20210109", tmpid, map[string]interface{}{
+					"$set": dict,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, ok_1, ok_2)
+}
+
+// 根据id 导出相关数据
+func exportBiddingTestData() {
+	log.Debug("导出相关-获取数据")
+	arr := []string{}
+	for _, tmpid := range arr {
+		dict := save_mgo.FindById("bidding", tmpid)
+		if dict != nil && len(dict) > 2 {
+			save_mgo.Save("zktest_allext_data", dict)
+		} else {
+			dict_back := save_mgo.FindById("bidding_back", tmpid)
+			if dict_back != nil && len(dict_back) > 2 {
+				save_mgo.Save("zktest_allext_data", dict_back)
+			}
+		}
+	}
+	log.Debug("is over ", len(arr))
+}
+
+// 分析 es ,标签包含
+func analyTagData() {
+	elastic.InitElasticSize("http://127.0.0.1:12003", 10)
+	//elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	//elastic.InitElasticSize("http://ela.spdata.jianyu360.com",10)
+	//query:=`{"query":{"filtered":{"filter":{"bool":{"must":[{}]}},"query":{"bool":{"should":[{"multi_match":{"query":"牵头","type":"phrase","fields":["detail","filetext"]}}]}}}},"from":0,"size":1}`
+
+	arr := []string{}
+	for k, value := range arr {
+		if k%10 == 0 {
+			log.Debug("当前:", k)
+		}
+		query := `{"query":{"filtered":{"filter":{"bool":{"must":[{}]}},"query":{"bool":{"should":[{"multi_match":{"query":` + `"` + value + `"` + `,"type":"phrase","fields":["detail","filetext"]}}]}}}},"from":0,"size":10}`
+
+		dataArr := *elastic.Get("bidding", "bidding", query)
+		if len(dataArr) > 0 {
+			//for _,data :=range dataArr {
+			//	log.Debug("存在",data["_id"])
+			//}
+		} else {
+			log.Debug("不存在:", value)
+		}
+	}
+	log.Debug("结束")
+}
+
+// 导出biding 相关数据
+func exportProjectperiodData() {
+	log.Debug("导出-系数数据")
+	//elastic.InitElasticSize("http://127.0.0.1:12003",10)
+	elastic.InitElasticSize("http://172.17.145.170:9800", 10)
+	//不同年限数据
+	timeArr := []string{
+		`"from":"1483200000","to":"1514736000"`,
+		`"from":"1514736000","to":"1546272000"`,
+		`"from":"1546272000","to":"1577808000"`,
+		`"from":"1577808000","to":"1609430400"`,
+		`"from":"1609430400","to":"1640966400"`,
+	}
+	idArr := make([]string, 0)
+
+	//无金额
+	for _, v := range timeArr {
+		query := `{"query":{"bool":{"must":[{"term":{"bidding.toptype":"结果"}},{"range":{"bidding.publishtime":{` + v + `}}},{"constant_score":{"filter":{"missing":{"field":"bidding.bidamount"}}}}],"must_not":[],"should":[]}},"from":0,"size":100,"_source":["_id"],"sort":[],"facets":{}}`
+		dataArr := *elastic.Get("bidding", "bidding", query)
+		for _, tmp := range dataArr {
+			tmp_id := qu.ObjToString(tmp["_id"])
+			idArr = append(idArr, tmp_id)
+		}
+	}
+	log.Debug("无金额:", len(idArr))
+	//1000以内
+	for _, v := range timeArr {
+		query := `{"query":{"bool":{"must":[{"term":{"bidding.toptype":"结果"}},{"range":{"bidding.publishtime":{` + v + `}}},{"range":{"bidding.bidamount":{"from":"0","to":"1000"}}}],"must_not":[],"should":[]}},"from":0,"size":100,"_source":["_id"],"sort":[],"facets":{}}`
+		dataArr := *elastic.Get("bidding", "bidding", query)
+		for _, tmp := range dataArr {
+			tmp_id := qu.ObjToString(tmp["_id"])
+			idArr = append(idArr, tmp_id)
+		}
+	}
+	log.Debug("1000金额:", len(idArr))
+	//100亿以上
+	for _, v := range timeArr {
+		query := `{"query":{"bool":{"must":[{"term":{"bidding.toptype":"结果"}},{"range":{"bidding.publishtime":{` + v + `}}},{"range":{"bidding.bidamount":{"from":"10000000000","to":"5000000000000"}}}],"must_not":[],"should":[]}},"from":0,"size":100,"_source":["_id"],"sort":[],"facets":{}}`
+		dataArr := *elastic.Get("bidding", "bidding", query)
+		for _, tmp := range dataArr {
+			tmp_id := qu.ObjToString(tmp["_id"])
+			idArr = append(idArr, tmp_id)
+		}
+	}
+	log.Debug("100亿金额:", len(idArr))
+
+	isOK := 0
+	for _, tmpid := range idArr {
+		dict := save_mgo.FindById("bidding", tmpid)
+		if dict != nil && len(dict) > 2 {
+			save_mgo.Save("zktest_bidamount", dict)
+			isOK++
+		} else {
+			dict_back := save_mgo.FindById("bidding_back", tmpid)
+			if dict_back != nil && len(dict_back) > 2 {
+				save_mgo.Save("zktest_bidamount", dict_back)
+				isOK++
+			}
+		}
+	}
+	log.Debug("is over ", len(idArr), isOK)
+}
+
+// 修复城市
+func repairCityData() {
+	log.Debug("待修复-相关数据 172.17.4.85:27080")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isOK := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("zk_repair_gatcity_0712").Find(&q).Select(map[string]interface{}{
+		"area":     1,
+		"city":     1,
+		"district": 1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		area := qu.ObjToString(tmp["area"])
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		dict := map[string]interface{}{
+			"area":     area,
+			"city":     city,
+			"district": district,
+		}
+		tmpid := BsonTOStringId(tmp["_id"])
+		data_1 := save_mgo.FindById("result_20210108", tmpid)
+		if data_1 != nil && len(data_1) > 0 {
+			isOK++
+			save_mgo.UpdateById("result_20210108", tmpid, map[string]interface{}{
+				"$set": dict,
+			})
+		} else {
+			data_2 := save_mgo.FindById("result_20210109", tmpid)
+			if data_2 != nil && len(data_2) > 0 {
+				isOK++
+				save_mgo.UpdateById("result_20210109", tmpid, map[string]interface{}{
+					"$set": dict,
+				})
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("is over ", total, isOK)
+}
+
+// 获取港澳台数据
+func getGATCityData() {
+	log.Debug("港澳台-获取数据")
+	arr := []string{}
+	for _, tmpid := range arr {
+		dict := save_mgo.FindById("bidding", tmpid)
+		if dict != nil && len(dict) > 2 {
+			delete(dict, "area")
+			delete(dict, "city")
+			delete(dict, "district")
+			save_mgo.Save("gat_bidding_data", dict)
+		} else {
+			dict_back := save_mgo.FindById("bidding_back", tmpid)
+			if dict_back != nil && len(dict_back) > 2 {
+				delete(dict_back, "area")
+				delete(dict_back, "city")
+				delete(dict_back, "district")
+				save_mgo.Save("gat_bidding_data", dict_back)
+			}
+		}
+	}
+	log.Debug("is over ", len(arr))
+}
+
+// 处理kvtext数据
+func dealWithKVtextData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isOK := map[string]interface{}{}, 0, 0
+	it := sess.DB(save_mgo.DbName).C("kvtext_test").Find(&q).Select(map[string]interface{}{
+		"kvtext": 1,
+	}).Iter()
+	data := make(map[string]interface{}, 0)
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%10000 == 0 {
+			log.Debug("cur index ", total, isOK)
+		}
+		kvtext := qu.ObjToString(tmp["kvtext"])
+		if kvtext != "" {
+			arr := strings.Split(kvtext, "\n")
+			for _, v := range arr {
+				kvArr := strings.Split(v, ":")
+				key := kvArr[0]
+				value := ""
+				if len(kvArr) > 1 {
+					value = kvArr[1]
+				} else {
+					continue
+				}
+				if data[key] == nil && key != "" {
+					isOK++
+					data[key] = 1
+					save_mgo.Save("kvtext_data", map[string]interface{}{
+						"key":     key,
+						"value":   value,
+						"kv":      v,
+						"info_id": BsonTOStringId(tmp["_id"]),
+					})
+				}
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("over ", total, len(data), isOK)
+}
+
+// 处理重复...港澳台
+func dealWithRepeatGATData() {
+	log.Debug("处理重复...港澳台数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total := map[string]interface{}{
+		"province": "台湾",
+	}, 0
+	it := sess.DB(save_mgo.DbName).C("address_new_2020").Find(&q).Select(map[string]interface{}{
+		"city":     1,
+		"district": 1,
+	}).Iter()
+
+	infoCityArr := map[string]interface{}{}
+	infoDistrictArr := map[string]interface{}{}
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total)
+		}
+		city := qu.ObjToString(tmp["city"])
+		district := qu.ObjToString(tmp["district"])
+		if city != "" && infoCityArr[city] == nil {
+			infoCityArr[city] = 1
+		}
+		if district != "" && infoDistrictArr[district] == nil {
+			infoDistrictArr[district] = 1
+		}
+
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("over ", len(infoCityArr), len(infoDistrictArr))
+
+	log.Debug("加载目标city数据")
+	//加载所有数据
+	for k, _ := range infoCityArr {
+		data, err := save_mgo.Find("address_new_2020", map[string]interface{}{
+			"$or": []map[string]interface{}{
+				{
+					"city": k,
+				},
+				{
+					"district": k,
+				},
+			},
+		}, nil, nil)
+		if err == nil && len(data) > 0 {
+			for _, value := range data {
+				province := qu.ObjToString(value["province"])
+				city := qu.ObjToString(value["city"])
+				district := qu.ObjToString(value["district"])
+				if province == "台湾" {
+					continue
+				}
+				if city == k || district == k {
+					log.Debug("有相关重复:", k, value["_id"])
+					break
+				}
+			}
+		}
+	}
+	log.Debug("加载目标district数据")
+	for k, _ := range infoDistrictArr {
+		data, err := save_mgo.Find("address_new_2020", map[string]interface{}{
+			"$or": []map[string]interface{}{
+				{
+					"city": k,
+				},
+				{
+					"district": k,
+				},
+			},
+		}, nil, nil)
+		if err == nil && len(data) > 0 {
+			for _, value := range data {
+				province := qu.ObjToString(value["province"])
+				city := qu.ObjToString(value["city"])
+				district := qu.ObjToString(value["district"])
+				if province == "台湾" {
+					continue
+				}
+				if city == k || district == k {
+					log.Debug("有相关重复:", k, value["_id"])
+					break
+				}
+			}
+		}
+	}
+
+}
+
+// 导出...港澳台
+func exportGATCityData() {
+	log.Debug("导出...港澳台数据")
+	//777989+421
+	f, err := os.Open("gat.txt")
+	if err != nil {
+
+	}
+	defer f.Close()
+	rd := bufio.NewReader(f)
+	total := 0
+	for {
+		total++
+		line, err := rd.ReadString('\n') //以'\n'为结束符读入一行
+		dict := dealWithGATLine(line)
+		if len(dict) != 0 {
+			save_mgo.Save("address_copy", dict)
+		}
+		if err != nil || io.EOF == err {
+			break
+		}
+	}
+	log.Debug("总计", total, "行")
+
+}
+func dealWithGATLine(line string) map[string]interface{} {
+	/*
+		710000, 台湾, 100000, 台湾, 1, , , 中国,台湾, 121.509, 25.0443, Taiwan
+		710100, 台北市, 710000, 台北, 2, 02, 1, 中国,台湾,台北市, 121.565, 25.0378, Taipei
+		710101, 松山区, 710100, 松山, 3, 02, 105, 中国,台湾,台北市,松山区, 121.577, 25.0497, Songshan
+	*/
+	arr := strings.Split(line, ",")
+	//记录当前省份,城市
+	dict := make(map[string]interface{}, 0)
+	if arr[0][:2] == "71" {
+		province = "台湾"
+		all_province = "台湾省"
+	} else if arr[0][:2] == "81" {
+		province = "香港"
+		all_province = "香港特别行政区"
+	} else {
+		province = "澳门"
+		all_province = "澳门特别行政区"
+	}
+
+	if len(arr) == 12 { //省份
+
+	} else if len(arr) == 13 { //市区 - 二级结构
+		city = arr[1]
+		brief_city = arr[3]
+		dict = map[string]interface{}{
+			"province":     province,
+			"all_province": all_province,
+			"brief_city":   brief_city,
+			"city":         city,
+			"pcode":        arr[0][:2],
+			"code":         arr[0][:4],
+		}
+
+	} else if len(arr) == 14 { //县  三级结构
+		dict = map[string]interface{}{
+			"province":       province,
+			"all_province":   all_province,
+			"brief_city":     brief_city,
+			"city":           city,
+			"brief_district": arr[3],
+			"district":       arr[1],
+			"pcode":          arr[0][:4],
+			"code":           arr[0][:6],
+		}
+	} else {
+		log.Debug("异常")
+	}
+	return dict
+}
+func dealWithBaiduYunData() {
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q, total, isOK, exist, un_exist := map[string]interface{}{}, 0, 0, 0, 0
+	arr := make([]map[string]string, 0)
+	it := sess.DB(save_mgo.DbName).C("bidding_test").Find(&q).Select(map[string]interface{}{
+		"detail": 1,
+		"buyer":  1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, isOK, exist, un_exist, tmp["_id"])
+		}
+		detail := trimHtml(qu.ObjToString(tmp["detail"]))
+		buyer := qu.ObjToString(tmp["buyer"])
+		length := utf8.RuneCountInString(detail)
+		if length > 50 && buyer != "" {
+			isOK++
+			new_buyer := getBaiduYunBuyer(detail)
+			if new_buyer != "" {
+				exist++
+				//log.Debug("原值:",buyer,"  最终匹配:",new_buyer)
+			} else {
+				un_exist++
+				//log.Debug("未匹配:",tmp["_id"])
+			}
+			arr = append(arr, map[string]string{
+				"source": buyer,
+				"buyer":  new_buyer,
+			})
+		}
+		if total > 200 {
+			break
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	log.Debug("处理完毕over......", total, isOK, exist, un_exist)
+	log.Debug("准备写入xlsx...", len(arr))
+	os.Remove("百度云统计.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("训练")
+	row := sheet.AddRow()
+	row.AddCell().Value = "原采购"
+	row.AddCell().Value = "结果"
+	row.AddCell().Value = "新采购等"
+	for _, v := range arr {
+		row := sheet.AddRow()
+		buyer := v["source"]
+		new_buyer := v["buyer"]
+		row.AddCell().SetString(buyer)
+		buyerArr := strings.Split(new_buyer, "~")
+		isTrue := false
+		for _, name := range buyerArr {
+			if name == buyer {
+				isTrue = true
+				break
+			}
+		}
+		if isTrue {
+			row.AddCell().Value = "正确"
+		} else {
+			if new_buyer != "" {
+				row.AddCell().Value = "异常"
+			} else {
+				row.AddCell().Value = ""
+			}
+		}
+		row.AddCell().SetString(new_buyer)
+	}
+	err := f.Save("百度云统计.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+}
+
+// 百度云相关
+func getBaiduYunBuyer(detail string) string {
+	//fmt.Println("runing...")
+	buyer := ""
+	body := map[string]interface{}{"text": detail}
+	data := postBaiDuYun("https://aip.baidubce.com/rpc/2.0/ai_custom/v1/entity_xtr/allbuyer?access_token=24.595a79beb92df28ae44081d8c069e32c.2592000.1627033355.282335-24414386",
+		body, "application/json")
+	//fmt.Println("post...end")
+	if results, ok := data["results"].([]interface{}); ok {
+		for _, v := range results {
+			tmp := *qu.ObjToMap(v)
+			span := qu.ObjToString(tmp["span"])
+			if span != "" {
+				if buyer == "" {
+					buyer = span
+				} else {
+					buyer = buyer + "~" + qu.ObjToString(tmp["span"])
+				}
+			}
+		}
+	} else {
+		log.Debug("异常:", reflect.TypeOf(data["results"]), data["results"])
+	}
+
+	return buyer
+}
+func postBaiDuYun(url string, data interface{}, contentType string) map[string]interface{} {
+	task <- struct{}{}
+	defer func() {
+		<-task
+	}()
+	client := &http.Client{Timeout: 15 * time.Second}
+	jsonStr, _ := json.Marshal(data)
+	resp, err := client.Post(url, contentType, bytes.NewBuffer(jsonStr))
+	if err != nil {
+
+	}
+	defer resp.Body.Close()
+	result, _ := ioutil.ReadAll(resp.Body)
+	dict := make(map[string]interface{})
+	json.Unmarshal(result, &dict)
+	//fmt.Println("post...start")
+	return dict
+}
+
+// 修复全量-指定字段数据
+func dealWithFullData() {
+	log.Debug("......处理全量数据")
+
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q := map[string]interface{}{}
+	total, isOK := 0, 0
+	pool := make(chan bool, 10)
+	wg := &sync.WaitGroup{}
+	it := sess.DB(save_mgo.DbName).C("result_dis_0618").Find(&q).Select(map[string]interface{}{
+		"bidmode":      1,
+		"getdocmethod": 1,
+		"agencyfee":    1,
+		"agencyrate":   1,
+		"docamount":    1,
+	}).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%100000 == 0 {
+			log.Debug("cur index ", total, isOK, tmp["_id"])
+		}
+		b, dict := fieldValidValue(tmp)
+		curID := BsonTOStringId(tmp["_id"])
+		if b {
+			source := save_mgo.FindById("result_20210108", curID)
+			if source != nil && len(source) > 2 {
+				isOK++ //符合条件-可以更新
+				pool <- true
+				wg.Add(1)
+				go func(dict map[string]interface{}, curID string) {
+					defer func() {
+						<-pool
+						wg.Done()
+					}()
+					//更新方法
+					save_mgo.UpdateById("result_20210108", curID, map[string]interface{}{
+						"$set": dict,
+					})
+				}(dict, curID)
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+
+	wg.Wait()
+	time.Sleep(30 * time.Second)
+	log.Debug("处理完毕over......", total, isOK)
+}
+func fieldValidValue(data map[string]interface{}) (bool, map[string]interface{}) {
+	b := false
+	dict := make(map[string]interface{}, 0)
+	bidmode := qu.IntAll(data["bidmode"])
+	if bidmode == 1 {
+		b = true
+		dict["bidway"] = "纸质投标"
+	} else if bidmode == 2 {
+		b = true
+		dict["bidway"] = "电子投标"
+	}
+	getdocmethod := qu.ObjToString(data["getdocmethod"])
+	if getdocmethod != "" {
+		b = true
+		dict["getdocmethod"] = getdocmethod
+	}
+	agencyfee := qu.Float64All(data["agencyfee"])
+	if agencyfee > float64(0) {
+		b = true
+		dict["agencyfee"] = agencyfee
+	}
+	agencyrate := qu.Float64All(data["agencyrate"])
+	if agencyrate > float64(0) {
+		b = true
+		dict["agencyrate"] = agencyrate
+	}
+	docamount := qu.Float64All(data["docamount"])
+	if docamount > float64(0) {
+		b = true
+		dict["docamount"] = docamount
+	}
+	return b, dict
+}
+
+// 导出实体数据
+func exportEntityData() {
+	log.Debug("......导出数据")
+	sess := save_mgo.GetMgoConn()
+	defer save_mgo.DestoryMongoConn(sess)
+	q := map[string]interface{}{}
+	arr := make([]map[string]string, 0)
+	total := 0
+	it := sess.DB(save_mgo.DbName).C("bidding_buyer_test").Find(&q).Iter()
+	for tmp := make(map[string]interface{}); it.Next(&tmp); total++ {
+		if total%1000 == 0 {
+			log.Debug("cur index ", total, tmp["_id"])
+		}
+
+		detail := trimHtml(qu.ObjToString(tmp["detail"]))
+		buyer := qu.ObjToString(tmp["buyer"])
+		//buyer不能有符号
+		buyer = strings.ReplaceAll(buyer, "(", "(")
+		buyer = strings.ReplaceAll(buyer, ")", ")")
+
+		length := utf8.RuneCountInString(detail)
+		if length > 50 && buyer != "" {
+			if length > 500 {
+				detail = string([]rune(detail)[0:500])
+			}
+			if strings.Contains(detail, buyer) {
+				arr = append(arr, map[string]string{
+					"detail": detail,
+					"buyer":  buyer,
+				})
+				//log.Debug("长度:",len(detail),utf8.RuneCountInString(detail))
+			}
+		}
+		tmp = make(map[string]interface{})
+	}
+	log.Debug("准备完毕......", len(arr))
+
+	maxTag := 0
+	indexArrStr := make([]map[string]string, 0)
+	for _, v := range arr {
+		detail := v["detail"]
+		buyer := v["buyer"]
+		reg := regexp.MustCompile(buyer)
+		indexArr := reg.FindAllStringIndex(detail, -1)
+		//log.Debug(indexArr)
+		if len(indexArr) > maxTag {
+			maxTag = len(indexArr)
+		}
+		//处理下标 [7,8],LOC   [[3 30] [48 75] [304 331]]
+		str := ""
+		for _, index := range indexArr {
+			first_index := index[0]
+			tempStr := detail[0:first_index]
+			head, length := utf8.RuneCountInString(tempStr), utf8.RuneCountInString(buyer)
+			if str == "" {
+				str = fmt.Sprintf("[%d,%d],采购单位", head, head+length)
+			} else {
+				str = str + fmt.Sprintf(":[%d,%d],采购单位", head, head+length)
+			}
+		}
+		indexArrStr = append(indexArrStr, map[string]string{
+			"detail": string(detail),
+			"index":  str,
+		})
+		//log.Debug(str)
+	}
+	os.Remove("训练模型.xlsx")
+	f := xlsx.NewFile()
+	sheet, _ := f.AddSheet("extract")
+	row := sheet.AddRow()
+	row.AddCell().Value = "文本内容"
+	for i := 1; i <= maxTag; i++ {
+		row.AddCell().SetString(fmt.Sprintf("实体标注%d", i))
+	}
+	for _, tmp := range indexArrStr {
+		row = sheet.AddRow()
+		row.AddCell().SetString(fmt.Sprintf("%s入库量", tmp["detail"]))
+		indexArr := strings.Split(tmp["index"], ":")
+		for _, str := range indexArr {
+			row.AddCell().SetString(fmt.Sprintf("%s", str))
+		}
+	}
+	err := f.Save("训练模型.xlsx")
+	if err != nil {
+		log.Debug("保存xlsx失败:", err)
+		return
+	} else {
+		log.Debug("保存xlsx成功:", err)
+	}
+
+}
+func trimHtml(src string) string {
+	//将HTML标签全转换成小写
+	re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
+	src = re.ReplaceAllStringFunc(src, strings.ToLower)
+	//去除STYLE
+	re, _ = regexp.Compile("\\<style[\\S\\s]+?\\</style\\>")
+	src = re.ReplaceAllString(src, "")
+	//去除SCRIPT
+	re, _ = regexp.Compile("\\<script[\\S\\s]+?\\</script\\>")
+	src = re.ReplaceAllString(src, "")
+	//去除所有尖括号内的HTML代码,并换成换行符
+	re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
+	src = re.ReplaceAllString(src, "\n")
+	//去除连续的换行符
+	re, _ = regexp.Compile("\\s{2,}")
+	src = re.ReplaceAllString(src, "\n")
+	return strings.TrimSpace(src)
+}
+func escape(s string) string {
+	news := ""
+	for _, c := range s {
+		if unicode.Is(unicode.Han, c) || unicode.IsNumber(c) || unicode.IsLetter(c) {
+			news = news + string(c)
+		} else if c == '\\' || c == '+' || c == '-' || c == '!' || c == '(' || c == ')' || c == ':' || c == '^' || c == '[' || c == ']' || c == '"' || c == '{' || c == '}' || c == '~' || c == '*' || c == '?' || c == '|' || c == '&' || c == '/' || c == '#' || c == '@' || c == '(' || c == ')' || c == '>' || c == '<' || c == '“' || c == '”' || c == '?' || c == '、' || c == '.' {
+			a := string([]rune{os.PathSeparator, '\\'})
+			news = news + a + string(c)
+		} else {
+			return ""
+		}
+	}
+	return news
+}
+
+// 抽取试验方式
+func extract_test() {
+
+	//reg := regexp.MustCompile(`^.{2}([大|小|中|学][学|院]|公司)$`)
+	//bol:= reg.MatchString("一名司公")
+	//log.Debug(bol)
+	//
+	//
+	//return
+
+	//text := `采购公告期:2020年04月13日
+	//		品目分类: 货物
+	//		采购项目包组: A
+	//		供应商组织机构代码: 9113012955331793XL
+	//		供应商名称: 河北金谷粮食机械有限公司
+	//		供应商地址: 赞皇县赞皇镇东白草坪村
+	//		主要标的名称: 高邑县金达粮油购销有限责任公司使用构建粮食延伸收购服务网点工程
+	//		金额(元): 685448.43元
+	//		优惠率: 无
+	//		服务要求: 详见文件`
+	//var MultiReg = regexp.MustCompile("(([一二三四五六七八九十0-9A-Za-zⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ\\-])+(包|标段|分标))[::]?|(?:^|\\n)([一二三四五六七八九十0-9A-Za-zⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ\\-]+(包))|([第]?([一二三四五六七八九十0-9A-Za-zⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ\\-]+)#?((子|合同|分|施工|监理)?(标段?|合同段|标包)))|(((子|分|合同|施工|监理|标包|标|包)(标|包段|项|组)?)[     ]*([一二三四五六七八九十0-9A-Za-zⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ\\-]+))[::]?|(子项目[0-9]+)|采购项目(包组)[::\\s]+?([一二三四五六七八九十0-9A-Za-zⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ\\-]+)")
+	//b:=MultiReg.MatchString(text)
+	//log.Debug(b)
+	//res := MultiReg.FindAllStringSubmatch(text, -1)
+	//log.Debug(res)
+	var winnerReg20 = regexp.MustCompile("(中标单位候选人名称)[\\s]+(.*)[\\s]+(中标候选人单位名次)[\\s]+([弟|第][一二三四五六七八九十0-9]中标人)")
+	text := `1 中标单位候选人名称
+	   四川兴荣祺商贸有限公司
+       中标候选人单位名次
+	   第一中标人
+	   序号
+	   2 中标单位候选人名称
+	   乐山万美商贸有限公司
+	   中标候选人单位名次
+	   第二中标人
+	   序号
+	   3 中标单位候选人名称
+	   四川睿鑫宇商贸有限公司
+	   中标候选人单位名次
+	   第三中标人`
+
+	b := winnerReg20.MatchString(text)
+	log.Debug(b)
+	text = winnerReg20.ReplaceAllString(text, "\n${4}:${2}\n")
+	log.Debug(text)
+
+	var winnerReg0 = regexp.MustCompile("(中标候选人第\\d名|第[0-9一二三四五](中选|中标|成交)候选人|中标人[1-9]|第[一二三四五0-9]中标人)")
+	tttt := `第一中标人:四川兴荣祺商贸有限公司`
+	array := winnerReg0.FindAllStringSubmatchIndex(`第一中标人:四川兴荣祺商贸有限公司`, -1)
+	dddd := array[0]
+	log.Debug(tttt[(dddd[1]):])
+	//str := `
+	//	中标信息:
+	//	一标段:中标内容:大型干湿两用扫地车2台
+	//	中标供应商:烟台海德专用汽车有限公司
+	//	中标金额:壹佰叁拾肆万圆整
+	//	:1340000元`
+	//var mmm = regexp.MustCompile("(第[0-9]包)|([(]?第[0-9]包[)]?)")
+	//res := mmm.FindAllStringSubmatch("工程监理项目(第4包)第三包", -1)
+	//log.Debug(res)
+	//pretreated.CheckMultiPackage(str, "中标信息") //找pkg分包包名
+}
+
+func IsMarkInterfaceArr(t interface{}) []string {
+	sub_list := []string{}
+	if list_3, ok_3 := t.([]string); ok_3 {
+		sub_list = list_3
+		return sub_list
+	}
+	if list_1, ok_1 := t.(primitive.A); ok_1 {
+		sub_list = qu.ObjArrToStringArr(list_1)
+	} else {
+		if list_2, ok_2 := t.([]interface{}); ok_2 {
+			sub_list = qu.ObjArrToStringArr(list_2)
+		}
+	}
+	return sub_list
+}
+
+func IsMarkInterfaceMap(t interface{}) []map[string]interface{} {
+	p_list := []map[string]interface{}{}
+	if yl_list_1, ok_1 := t.(primitive.A); ok_1 {
+		p_list = qu.ObjArrToMapArr(yl_list_1)
+	} else {
+		if yl_list_2, ok_2 := t.([]interface{}); ok_2 {
+			p_list = qu.ObjArrToMapArr(yl_list_2)
+		}
+	}
+	return p_list
+}
+
+// 临时测试方法
+func testMethod() {
+	qu.Catch()
+	log.Debug("处理数据...")
+
+	redis.InitRedis("test=127.0.0.1:6379")
+	//elastic.InitElasticSize("http://ela.spdata.jianyu360.com",10)
+
+	var Url = "https://www.jianyu360.com/article/content/%s.html"
+	var Encode = fmt.Sprintf(Url, qu.CommonEncodeArticle("content", "60b9bf4a8a2adb30a5a25000"))
+	var Decode = qu.CommonDecodeArticle("content", "AKSY1wJZDweAj07GXd6Z3IzJicvASJgdnxxPygFLCFFcFVzeSNUCZ4%3D") //[0]
+	log.Debug(Encode)
+	log.Debug(Decode[0])
+}
+
+var reg_alias = regexp.MustCompile("(税务局|工商行政管理局|文化广播电视新闻出版局|外国专家局|" +
+	"中医药管理局|市场监督管理局|广播电视局|医疗保障局|机关事务管理局|粮食和物资储备局|" +
+	"监狱管理局|畜牧兽医局|食品药品监督管理局|城市管理行政执法局|城市管理局|国家保密局|密码管理局|" +
+	"地方金融监督管理局|住房保障和房屋管理局|质量技术监督局|人力资源与社会保障局|公路管理局|国土资源局|" +
+	"卫生和计划生育局|民事政务局|公众安全局|交通管理局|人力资源和社会保障局|劳动和社会保障局|" +
+	"住房和城乡建设局|就业服务局|文物管理局|环境保护局|粮食和物资储备局|教育体育局|" +
+	"体育局|教育局|招商局|农业局|农机局|水务局|林业局|财政局|审计局|统计局|商务局)$")
+var reglen *regexp.Regexp = regexp.MustCompile("^(.{1,3}|.{40,})$")
+var strReg *regexp.Regexp = regexp.MustCompile("^(.{0,3}工程队|.{0,3}总公司|_+|.{0,2}设备安装公司|.{0,2}装[饰修潢]公司|.{0,2}开发公司|.{0,4}有限公司|.{0,4}有限责任公司|.{0,4}设计院|建筑设计研?究?院|省文物考古研究所|经济开发区|省.*|镇人民政府|.{0,2}服务公司|" +
+	".{0,2}工程质量监督站|.{0,3}经[营销]部|.{0,3}事务所|.{0,4}工程公司|.{0,4}责任公司|.*勘测|.{0,4}研究院|.*能源建|.{0,2}安装工程|.*[市省]{1}|.{0,4}中心|.*区.?|" +
+	".{0,3}税务局|.{0,3}财政局|.{0,3}商行|.{0,2}公安处|.{0,2}测绘院|.{0,3}开发|.{0,2}建设局|.{0,2}经销部|.{0,3}委员会|.{0,2}分公司|.{0,2}管理站|.{0,2}事务管理局|" +
+	".*资料|.{0,2}办公用品.{1,2}|.*唯亭|.*设备|.+安装|.{0,2}技术服务|市.+[台院社局司]|城?区.+[府局室院]|县.+[院台局]|.{0,2}发展公司|经济技术开发|" +
+	"发展和改革局|贵州有色地质|铝塑门窗加工|生产力促进中心|特殊普通合伙|工业集团公司|人民调解协会|人民政府办公厅|机电设备公司|房地产开发有限公司|.{0,4}商店|中等专业学校|" +
+	"农村信用联社|.{0,4}经营部|.{0,4}销售部|驾驶员培训学校|.{2}县.{2}镇|保安服务总公司|住房和城乡建设局|地产评估事务所|生产资料门市部|×+|.{0,3}[0-9]{15}|.*[0-9]+|.*路|.*无字号名称.*|.*车|.*[,,]{1}.*|.*个体工商户|.*运输户)$")
+
+// 非中文开头...
+var unstart_strReg *regexp.Regexp = regexp.MustCompile("^([\u4e00-\u9fa5])")
+
+// 开头
+var start_strReg *regexp.Regexp = regexp.MustCompile("^([a-zA-Z]{1,2}[\u4e00-\u9fa5]{6,}|省|市|县|区|业绩|资格|中标|项目|预算单位)")
+
+// 结尾
+var end_strReg *regexp.Regexp = regexp.MustCompile("(\\.|\\.\\.|餐馆|店|腻子|肉庄|画社|美发屋|发廊|网吧|网咖|零售点|新街|包子铺|奶茶铺|(株)|先生|女士|小姐|" +
+	"资格|业绩|中标|项目|预算单位|摊位号|号|厅|室|部|点|馆|场|厂|床|所|处|站|行|中心|合作社|ATMS|" +
+	"吧|楼|摊|摊位|廊|茶社|坊|圃|汤锅|园|民宿|美容院|房|排挡|府|庄|栈|队|批发|苑|养殖户|棋牌|农家乐|货运|" +
+	"城|社|基地|会|服务|娱乐|种植|百货|汽修|农家菜|亭|小吃|快餐|粮库|卫生院|书画院|面|门窗|鸡排|屋|橱|堂|肉铺|服务|服饰|/*)$")
+
+// 包含
+var con_strReg *regexp.Regexp = regexp.MustCompile("(\\?|?|%|代码标识|删除|错误|吊销|注销|发起人|待清理|&#|护照号|身份证号|" +
+	"法人|&nbsp|国家拨入|借款|积累资金|单位自有|认股人|--|、|&|`|美元|[\u4e00-\u9fa5]{2,6}·[\u4e00-\u9fa5]{2,6})|" +
+	"[a-zA-Z]{5,}")
+
+var uncon_strReg *regexp.Regexp = regexp.MustCompile("(园|政府|集团|公司|有限|合伙|企|院|学|局|处)")
+
+var startWordReg_1 *regexp.Regexp = regexp.MustCompile("^(.{1,5})(省|市|县|州|自治区|特别行政区)")
+var startWordReg_2 *regexp.Regexp = regexp.MustCompile("^(北京|天津|重庆|上海|河北|山西|" +
+	"浙江|江西|湖北|吉林|海南|甘肃|广东|陕西|辽宁|山东|河南|云南|黑龙江|福建|贵州|江苏|安徽|" +
+	"湖南|四川|青海|台湾|新疆|内蒙古|宁夏|西藏|广西|澳门|香港)")
+var startWordReg_3 *regexp.Regexp = regexp.MustCompile("^(北京市|天津市|重庆市|上海市|河北省|山西省|" +
+	"浙江省|江西省|湖北省|吉林省|海南省|甘肃省|广东省|陕西省|辽宁省|山东省|河南省|云南省|黑龙江省|福建省|贵州省|江苏省|安徽省|" +
+	"湖南省|四川省|青海省|台湾省|新疆维吾尔自治区|内蒙古自治区|宁夏回族自治区|西藏自治区|广西壮族自治区|澳门特别行政区|香港特别行政区)")
+
+var endWordReg *regexp.Regexp = regexp.MustCompile("(有限公司|有限责任公司)$")
+
+
+
+

+ 21 - 21
listen_data/src/mysql.go

@@ -45,12 +45,12 @@ func (m *Mysql) Init() {
 	}
 	}
 }
 }
 
 
-//新增
+// 新增
 func (m *Mysql) Insert(tableName string, data map[string]interface{}) int64 {
 func (m *Mysql) Insert(tableName string, data map[string]interface{}) int64 {
 	return m.InsertByTx(nil, tableName, data)
 	return m.InsertByTx(nil, tableName, data)
 }
 }
 
 
-//带有事务的新增
+// 带有事务的新增
 func (m *Mysql) InsertByTx(tx *sql.Tx, tableName string, data map[string]interface{}) int64 {
 func (m *Mysql) InsertByTx(tx *sql.Tx, tableName string, data map[string]interface{}) int64 {
 	fields := []string{}
 	fields := []string{}
 	values := []interface{}{}
 	values := []interface{}{}
@@ -70,12 +70,12 @@ func (m *Mysql) InsertByTx(tx *sql.Tx, tableName string, data map[string]interfa
 	return m.InsertBySqlByTx(tx, q, values...)
 	return m.InsertBySqlByTx(tx, q, values...)
 }
 }
 
 
-//sql语句新增
+// sql语句新增
 func (m *Mysql) InsertBySql(q string, args ...interface{}) int64 {
 func (m *Mysql) InsertBySql(q string, args ...interface{}) int64 {
 	return m.InsertBySqlByTx(nil, q, args...)
 	return m.InsertBySqlByTx(nil, q, args...)
 }
 }
 
 
-//带有事务的sql语句新增
+// 带有事务的sql语句新增
 func (m *Mysql) InsertBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
 func (m *Mysql) InsertBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
 	result, _ := m.ExecBySqlByTx(tx, q, args...)
 	result, _ := m.ExecBySqlByTx(tx, q, args...)
 	if result == nil {
 	if result == nil {
@@ -89,32 +89,32 @@ func (m *Mysql) InsertBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64
 	return id
 	return id
 }
 }
 
 
-//批量新增
+// 批量新增
 func (m *Mysql) InsertIgnoreBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) InsertIgnoreBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.InsertIgnoreBatchByTx(nil, tableName, fields, values)
 	return m.InsertIgnoreBatchByTx(nil, tableName, fields, values)
 }
 }
 
 
-//带事务的批量新增
+// 带事务的批量新增
 func (m *Mysql) InsertIgnoreBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) InsertIgnoreBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.insertOrReplaceBatchByTx(tx, "INSERT", "IGNORE", tableName, fields, values)
 	return m.insertOrReplaceBatchByTx(tx, "INSERT", "IGNORE", tableName, fields, values)
 }
 }
 
 
-//批量新增
+// 批量新增
 func (m *Mysql) InsertBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) InsertBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.InsertBatchByTx(nil, tableName, fields, values)
 	return m.InsertBatchByTx(nil, tableName, fields, values)
 }
 }
 
 
-//带事务的批量新增
+// 带事务的批量新增
 func (m *Mysql) InsertBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) InsertBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.insertOrReplaceBatchByTx(tx, "INSERT", "", tableName, fields, values)
 	return m.insertOrReplaceBatchByTx(tx, "INSERT", "", tableName, fields, values)
 }
 }
 
 
-//批量更新
+// 批量更新
 func (m *Mysql) ReplaceBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) ReplaceBatch(tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.ReplaceBatchByTx(nil, tableName, fields, values)
 	return m.ReplaceBatchByTx(nil, tableName, fields, values)
 }
 }
 
 
-//带事务的批量更新
+// 带事务的批量更新
 func (m *Mysql) ReplaceBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 func (m *Mysql) ReplaceBatchByTx(tx *sql.Tx, tableName string, fields []string, values []interface{}) (int64, int64) {
 	return m.insertOrReplaceBatchByTx(tx, "REPLACE", "", tableName, fields, values)
 	return m.insertOrReplaceBatchByTx(tx, "REPLACE", "", tableName, fields, values)
 }
 }
@@ -147,12 +147,12 @@ func (m *Mysql) insertOrReplaceBatchByTx(tx *sql.Tx, tp string, afterInsert, tab
 	return v1, v2
 	return v1, v2
 }
 }
 
 
-//sql语句执行
+// sql语句执行
 func (m *Mysql) ExecBySql(q string, args ...interface{}) (sql.Result, error) {
 func (m *Mysql) ExecBySql(q string, args ...interface{}) (sql.Result, error) {
 	return m.ExecBySqlByTx(nil, q, args...)
 	return m.ExecBySqlByTx(nil, q, args...)
 }
 }
 
 
-//sql语句执行,带有事务
+// sql语句执行,带有事务
 func (m *Mysql) ExecBySqlByTx(tx *sql.Tx, q string, args ...interface{}) (sql.Result, error) {
 func (m *Mysql) ExecBySqlByTx(tx *sql.Tx, q string, args ...interface{}) (sql.Result, error) {
 	var stmtIns *sql.Stmt
 	var stmtIns *sql.Stmt
 	var err error
 	var err error
@@ -248,11 +248,11 @@ func (m *Mysql) Find(tableName string, query map[string]interface{}, fields, ord
 		buffer.WriteString(fmt.Sprint(pageSize))
 		buffer.WriteString(fmt.Sprint(pageSize))
 	}
 	}
 	q := buffer.String()
 	q := buffer.String()
-	log.Println(q, vs)
+	//log.Println(q, vs)
 	return m.SelectBySql(q, vs...)
 	return m.SelectBySql(q, vs...)
 }
 }
 
 
-//sql语句查询
+// sql语句查询
 func (m *Mysql) SelectBySql(q string, args ...interface{}) *[]map[string]interface{} {
 func (m *Mysql) SelectBySql(q string, args ...interface{}) *[]map[string]interface{} {
 	return m.SelectBySqlByTx(nil, q, args...)
 	return m.SelectBySqlByTx(nil, q, args...)
 }
 }
@@ -332,12 +332,12 @@ func (m *Mysql) FindOne(tableName string, query map[string]interface{}, fields,
 	return nil
 	return nil
 }
 }
 
 
-//修改
+// 修改
 func (m *Mysql) Update(tableName string, query, update map[string]interface{}) bool {
 func (m *Mysql) Update(tableName string, query, update map[string]interface{}) bool {
 	return m.UpdateByTx(nil, tableName, query, update)
 	return m.UpdateByTx(nil, tableName, query, update)
 }
 }
 
 
-//带事务的修改
+// 带事务的修改
 func (m *Mysql) UpdateByTx(tx *sql.Tx, tableName string, query, update map[string]interface{}) bool {
 func (m *Mysql) UpdateByTx(tx *sql.Tx, tableName string, query, update map[string]interface{}) bool {
 	q_fs := []string{}
 	q_fs := []string{}
 	u_fs := []string{}
 	u_fs := []string{}
@@ -355,7 +355,7 @@ func (m *Mysql) UpdateByTx(tx *sql.Tx, tableName string, query, update map[strin
 	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) >= 0
 	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) >= 0
 }
 }
 
 
-//删除
+// 删除
 func (m *Mysql) Delete(tableName string, query map[string]interface{}) bool {
 func (m *Mysql) Delete(tableName string, query map[string]interface{}) bool {
 	return m.DeleteByTx(nil, tableName, query)
 	return m.DeleteByTx(nil, tableName, query)
 }
 }
@@ -371,12 +371,12 @@ func (m *Mysql) DeleteByTx(tx *sql.Tx, tableName string, query map[string]interf
 	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) > 0
 	return m.UpdateOrDeleteBySqlByTx(tx, q, values...) > 0
 }
 }
 
 
-//修改或删除
+// 修改或删除
 func (m *Mysql) UpdateOrDeleteBySql(q string, args ...interface{}) int64 {
 func (m *Mysql) UpdateOrDeleteBySql(q string, args ...interface{}) int64 {
 	return m.UpdateOrDeleteBySqlByTx(nil, q, args...)
 	return m.UpdateOrDeleteBySqlByTx(nil, q, args...)
 }
 }
 
 
-//带事务的修改或删除
+// 带事务的修改或删除
 func (m *Mysql) UpdateOrDeleteBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
 func (m *Mysql) UpdateOrDeleteBySqlByTx(tx *sql.Tx, q string, args ...interface{}) int64 {
 	result, err := m.ExecBySqlByTx(tx, q, args...)
 	result, err := m.ExecBySqlByTx(tx, q, args...)
 	if err != nil {
 	if err != nil {
@@ -391,7 +391,7 @@ func (m *Mysql) UpdateOrDeleteBySqlByTx(tx *sql.Tx, q string, args ...interface{
 	return count
 	return count
 }
 }
 
 
-//总数
+// 总数
 func (m *Mysql) Count(tableName string, query map[string]interface{}) int64 {
 func (m *Mysql) Count(tableName string, query map[string]interface{}) int64 {
 	fields := []string{}
 	fields := []string{}
 	values := []interface{}{}
 	values := []interface{}{}
@@ -468,7 +468,7 @@ func (m *Mysql) CountBySql(q string, args ...interface{}) int64 {
 	return count
 	return count
 }
 }
 
 
-//执行事务
+// 执行事务
 func (m *Mysql) ExecTx(msg string, f func(tx *sql.Tx) bool) bool {
 func (m *Mysql) ExecTx(msg string, f func(tx *sql.Tx) bool) bool {
 	tx, err := m.DB.Begin()
 	tx, err := m.DB.Begin()
 	if err != nil {
 	if err != nil {

BIN
listen_data/src/res/region1014.xlsx


+ 720 - 0
listen_data/src/res/判重数量.txt

@@ -0,0 +1,720 @@
+88
+137
+255
+29
+524
+859
+327
+394
+355
+228
+250
+175
+174
+281
+153
+77
+459
+125
+157
+174
+1225
+400
+420
+209
+274
+199
+76
+187
+174
+324
+201
+206
+350
+330
+413
+327
+204
+167
+196
+222
+181
+248
+104
+67
+424
+119
+109
+138
+227
+100
+459
+309
+237
+202
+100
+253
+228
+154
+116
+144
+234
+197
+103
+112
+199
+114
+111
+226
+411
+187
+119
+101
+56
+207
+102
+162
+207
+77
+85
+281
+345
+119
+259
+74
+144
+166
+103
+180
+151
+40
+126
+136
+112
+152
+385
+79
+49
+242
+219
+219
+91
+60
+65
+98
+126
+95
+156
+94
+75
+371
+55
+123
+80
+295
+99
+194
+232
+111
+111
+89
+50
+81
+55
+84
+177
+240
+116
+39
+64
+174
+203
+93
+80
+89
+61
+201
+92
+73
+137
+216
+285
+64
+154
+99
+30
+102
+71
+234
+177
+124
+56
+76
+190
+146
+103
+115
+139
+126
+143
+167
+74
+62
+148
+160
+132
+116
+44
+66
+116
+231
+156
+44
+239
+238
+63
+123
+78
+74
+310
+100
+125
+83
+59
+87
+89
+297
+113
+82
+39
+68
+112
+48
+121
+11
+44
+298
+45
+86
+33
+95
+460
+149
+40
+303
+58
+159
+39
+104
+25
+210
+173
+38
+51
+149
+76
+112
+45
+61
+185
+133
+168
+113
+70
+65
+242
+111
+148
+149
+115
+157
+58
+323
+134
+83
+82
+215
+99
+203
+230
+151
+172
+193
+183
+64
+201
+112
+152
+108
+123
+127
+124
+277
+76
+140
+95
+604
+214
+375
+289
+232
+577
+215
+236
+1003
+166
+276
+410
+353
+290
+338
+430
+569
+260
+606
+322
+322
+461
+341
+215
+437
+445
+258
+708
+227
+272
+1282
+1497
+343
+314
+976
+1222
+524
+550
+647
+488
+589
+823
+715
+571
+819
+774
+954
+1236
+766
+666
+1402
+1038
+1379
+1098
+1631
+637
+486
+602
+1097
+1086
+930
+822
+592
+935
+537
+1200
+789
+1001
+783
+843
+1508
+680
+927
+568
+629
+951
+713
+973
+648
+655
+772
+622
+724
+901
+932
+1130
+769
+1051
+938
+1775
+1915
+826
+797
+693
+801
+1136
+1009
+2420
+671
+908
+683
+858
+759
+611
+941
+500
+550
+877
+802
+639
+507
+614
+708
+541
+547
+813
+628
+511
+567
+688
+1443
+444
+578
+350
+377
+1562
+873
+529
+531
+514
+445
+253
+318
+176
+400
+419
+375
+370
+470
+217
+287
+366
+284
+401
+271
+284
+235
+324
+471
+220
+407
+403
+190
+240
+304
+836
+1127
+386
+879
+400
+357
+521
+344
+595
+319
+533
+336
+411
+507
+412
+604
+490
+489
+350
+624
+553
+280
+531
+439
+806
+1072
+519
+423
+674
+1212
+867
+647
+734
+369
+647
+540
+663
+527
+805
+454
+905
+730
+506
+793
+579
+693
+841
+830
+668
+689
+619
+691
+735
+760
+578
+2337
+825
+680
+648
+664
+2404
+886
+707
+1165
+891
+1002
+490
+473
+426
+303
+593
+439
+283
+467
+506
+796
+1322
+793
+922
+937
+1399
+1050
+1078
+877
+851
+1793
+1586
+817
+1465
+1896
+1183
+1077
+1649
+947
+1767
+679
+1319
+999
+975
+952
+1156
+706
+1216
+1103
+953
+847
+1008
+972
+1204
+681
+978
+779
+613
+1044
+835
+819
+683
+709
+760
+1770
+1369
+1174
+1307
+1160
+1084
+1165
+878
+704
+836
+1003
+760
+751
+760
+830
+777
+961
+805
+961
+883
+935
+867
+954
+839
+988
+931
+1337
+783
+909
+944
+782
+1734
+566
+1259
+663
+838
+946
+425
+641
+288
+707
+520
+411
+350
+608
+396
+286
+547
+344
+727
+828
+353
+673
+372
+653
+442
+374
+452
+221
+342
+945
+440
+440
+357
+682
+148
+423
+407
+216
+309
+375
+322
+196
+429
+260
+247
+438
+392
+272
+275
+430
+315
+291
+237
+238
+276
+559
+409
+144
+285
+282
+786
+246
+312
+409
+366
+243
+378
+172
+261
+259
+252
+271
+141
+262
+399
+130
+381
+163
+118
+356
+242
+192
+332
+129
+269
+138
+205
+197
+194
+195
+534
+483
+202
+404
+204
+400
+383
+325
+199
+33
+410
+347
+121
+285
+246
+258
+239
+309
+292
+272
+354
+202
+241
+279
+173
+464
+251
+140
+227
+323
+370
+242
+445
+376
+284
+121
+356
+316
+202
+204
+106
+159
+161
+250
+266
+64
+274
+169
+343
+302
+117
+174
+322
+152
+397
+213
+41
+327
+151
+352
+226
+108
+420
+112
+174
+299
+65
+144
+143
+59

+ 1440 - 0
listen_data/src/res/判重时间.txt

@@ -0,0 +1,1440 @@
+2023/10/27 00:00:57
+2023/10/27 00:00:58
+2023/10/27 00:02:53
+2023/10/27 00:02:53
+2023/10/27 00:05:03
+2023/10/27 00:05:04
+2023/10/27 00:06:44
+2023/10/27 00:06:44
+2023/10/27 00:09:24
+2023/10/27 00:09:27
+2023/10/27 00:11:37
+2023/10/27 00:11:43
+2023/10/27 00:12:53
+2023/10/27 00:12:54
+2023/10/27 00:15:19
+2023/10/27 00:15:23
+2023/10/27 00:17:03
+2023/10/27 00:17:07
+2023/10/27 00:19:02
+2023/10/27 00:19:05
+2023/10/27 00:21:00
+2023/10/27 00:21:02
+2023/10/27 00:22:57
+2023/10/27 00:22:59
+2023/10/27 00:25:09
+2023/10/27 00:25:13
+2023/10/27 00:27:08
+2023/10/27 00:27:14
+2023/10/27 00:28:54
+2023/10/27 00:28:55
+2023/10/27 00:30:50
+2023/10/27 00:30:50
+2023/10/27 00:33:15
+2023/10/27 00:33:39
+2023/10/27 00:35:04
+2023/10/27 00:35:07
+2023/10/27 00:36:47
+2023/10/27 00:36:50
+2023/10/27 00:38:45
+2023/10/27 00:38:52
+2023/10/27 00:41:32
+2023/10/27 00:42:54
+2023/10/27 00:43:19
+2023/10/27 00:43:28
+2023/10/27 00:45:23
+2023/10/27 00:45:31
+2023/10/27 00:46:56
+2023/10/27 00:46:58
+2023/10/27 00:48:53
+2023/10/27 00:48:56
+2023/10/27 00:51:06
+2023/10/27 00:51:11
+2023/10/27 00:52:51
+2023/10/27 00:52:51
+2023/10/27 00:55:01
+2023/10/27 00:55:05
+2023/10/27 00:56:45
+2023/10/27 00:56:48
+2023/10/27 00:59:13
+2023/10/27 00:59:20
+2023/10/27 01:01:00
+2023/10/27 01:01:05
+2023/10/27 01:03:00
+2023/10/27 01:03:02
+2023/10/27 01:04:57
+2023/10/27 01:04:59
+2023/10/27 01:07:24
+2023/10/27 01:07:29
+2023/10/27 01:09:09
+2023/10/27 01:09:12
+2023/10/27 01:11:22
+2023/10/27 01:11:26
+2023/10/27 01:13:06
+2023/10/27 01:13:09
+2023/10/27 01:14:49
+2023/10/27 01:14:54
+2023/10/27 01:17:04
+2023/10/27 01:17:12
+2023/10/27 01:18:52
+2023/10/27 01:18:54
+2023/10/27 01:20:49
+2023/10/27 01:20:53
+2023/10/27 01:23:18
+2023/10/27 01:23:28
+2023/10/27 01:24:53
+2023/10/27 01:24:53
+2023/10/27 01:26:48
+2023/10/27 01:26:49
+2023/10/27 01:29:29
+2023/10/27 01:29:51
+2023/10/27 01:31:01
+2023/10/27 01:31:02
+2023/10/27 01:32:42
+2023/10/27 01:32:44
+2023/10/27 01:34:54
+2023/10/27 01:34:56
+2023/10/27 01:36:51
+2023/10/27 01:36:57
+2023/10/27 01:38:52
+2023/10/27 01:38:55
+2023/10/27 01:41:05
+2023/10/27 01:41:10
+2023/10/27 01:43:05
+2023/10/27 01:43:15
+2023/10/27 01:44:55
+2023/10/27 01:44:59
+2023/10/27 01:46:54
+2023/10/27 01:46:58
+2023/10/27 01:48:53
+2023/10/27 01:48:53
+2023/10/27 01:50:48
+2023/10/27 01:50:54
+2023/10/27 01:53:04
+2023/10/27 01:53:10
+2023/10/27 01:54:50
+2023/10/27 01:54:50
+2023/10/27 01:57:00
+2023/10/27 01:57:02
+2023/10/27 01:58:57
+2023/10/27 01:58:58
+2023/10/27 02:00:53
+2023/10/27 02:00:59
+2023/10/27 02:03:09
+2023/10/27 02:03:22
+2023/10/27 02:05:02
+2023/10/27 02:05:03
+2023/10/27 02:06:58
+2023/10/27 02:07:00
+2023/10/27 02:08:55
+2023/10/27 02:09:00
+2023/10/27 02:10:55
+2023/10/27 02:10:56
+2023/10/27 02:12:51
+2023/10/27 02:12:53
+2023/10/27 02:14:48
+2023/10/27 02:14:49
+2023/10/27 02:16:59
+2023/10/27 02:17:04
+2023/10/27 02:19:14
+2023/10/27 02:19:17
+2023/10/27 02:20:57
+2023/10/27 02:20:57
+2023/10/27 02:22:52
+2023/10/27 02:22:53
+2023/10/27 02:24:48
+2023/10/27 02:24:48
+2023/10/27 02:26:58
+2023/10/27 02:27:02
+2023/10/27 02:28:42
+2023/10/27 02:28:44
+2023/10/27 02:30:54
+2023/10/27 02:30:56
+2023/10/27 02:33:06
+2023/10/27 02:33:09
+2023/10/27 02:34:49
+2023/10/27 02:34:50
+2023/10/27 02:37:00
+2023/10/27 02:37:02
+2023/10/27 02:38:58
+2023/10/27 02:38:59
+2023/10/27 02:41:09
+2023/10/27 02:41:11
+2023/10/27 02:42:51
+2023/10/27 02:42:51
+2023/10/27 02:44:46
+2023/10/27 02:44:48
+2023/10/27 02:46:43
+2023/10/27 02:46:43
+2023/10/27 02:48:53
+2023/10/27 02:48:55
+2023/10/27 02:50:50
+2023/10/27 02:50:50
+2023/10/27 02:52:45
+2023/10/27 02:52:45
+2023/10/27 02:54:56
+2023/10/27 02:54:56
+2023/10/27 02:56:51
+2023/10/27 02:56:54
+2023/10/27 02:58:49
+2023/10/27 02:58:49
+2023/10/27 03:00:44
+2023/10/27 03:00:46
+2023/10/27 03:02:56
+2023/10/27 03:02:56
+2023/10/27 03:04:51
+2023/10/27 03:04:53
+2023/10/27 03:07:03
+2023/10/27 03:07:04
+2023/10/27 03:09:14
+2023/10/27 03:09:15
+2023/10/27 03:10:40
+2023/10/27 03:10:40
+2023/10/27 03:12:50
+2023/10/27 03:12:50
+2023/10/27 03:14:45
+2023/10/27 03:14:48
+2023/10/27 03:16:58
+2023/10/27 03:16:59
+2023/10/27 03:19:09
+2023/10/27 03:19:10
+2023/10/27 03:20:50
+2023/10/27 03:20:50
+2023/10/27 03:23:00
+2023/10/27 03:23:01
+2023/10/27 03:24:56
+2023/10/27 03:24:56
+2023/10/27 03:26:51
+2023/10/27 03:26:53
+2023/10/27 03:29:03
+2023/10/27 03:29:03
+2023/10/27 03:30:58
+2023/10/27 03:30:59
+2023/10/27 03:33:09
+2023/10/27 03:33:09
+2023/10/27 03:34:49
+2023/10/27 03:34:49
+2023/10/27 03:36:59
+2023/10/27 03:37:00
+2023/10/27 03:38:55
+2023/10/27 03:38:56
+2023/10/27 03:40:51
+2023/10/27 03:40:51
+2023/10/27 03:43:01
+2023/10/27 03:43:02
+2023/10/27 03:44:57
+2023/10/27 03:44:57
+2023/10/27 03:47:07
+2023/10/27 03:47:09
+2023/10/27 03:49:04
+2023/10/27 03:49:04
+2023/10/27 03:50:59
+2023/10/27 03:51:00
+2023/10/27 03:53:10
+2023/10/27 03:53:10
+2023/10/27 03:54:50
+2023/10/27 03:54:51
+2023/10/27 03:56:46
+2023/10/27 03:56:46
+2023/10/27 03:58:41
+2023/10/27 03:58:42
+2023/10/27 04:00:52
+2023/10/27 04:00:52
+2023/10/27 04:02:47
+2023/10/27 04:02:48
+2023/10/27 04:04:43
+2023/10/27 04:04:43
+2023/10/27 04:06:53
+2023/10/27 04:06:53
+2023/10/27 04:08:48
+2023/10/27 04:08:50
+2023/10/27 04:11:00
+2023/10/27 04:11:00
+2023/10/27 04:12:55
+2023/10/27 04:12:56
+2023/10/27 04:14:51
+2023/10/27 04:14:52
+2023/10/27 04:16:47
+2023/10/27 04:16:47
+2023/10/27 04:18:57
+2023/10/27 04:18:57
+2023/10/27 04:21:07
+2023/10/27 04:21:08
+2023/10/27 04:23:03
+2023/10/27 04:23:03
+2023/10/27 04:24:58
+2023/10/27 04:25:01
+2023/10/27 04:26:56
+2023/10/27 04:26:56
+2023/10/27 04:29:06
+2023/10/27 04:29:06
+2023/10/27 04:31:01
+2023/10/27 04:31:01
+2023/10/27 04:32:56
+2023/10/27 04:32:56
+2023/10/27 04:34:51
+2023/10/27 04:34:52
+2023/10/27 04:37:02
+2023/10/27 04:37:03
+2023/10/27 04:39:13
+2023/10/27 04:39:14
+2023/10/27 04:41:09
+2023/10/27 04:41:11
+2023/10/27 04:42:51
+2023/10/27 04:42:51
+2023/10/27 04:44:49
+2023/10/27 04:44:50
+2023/10/27 04:47:00
+2023/10/27 04:47:01
+2023/10/27 04:48:41
+2023/10/27 04:48:41
+2023/10/27 04:50:36
+2023/10/27 04:50:36
+2023/10/27 04:52:47
+2023/10/27 04:52:47
+2023/10/27 04:55:12
+2023/10/27 04:55:12
+2023/10/27 04:57:07
+2023/10/27 04:57:08
+2023/10/27 04:58:48
+2023/10/27 04:58:49
+2023/10/27 05:00:44
+2023/10/27 05:00:44
+2023/10/27 05:02:39
+2023/10/27 05:02:39
+2023/10/27 05:05:05
+2023/10/27 05:05:05
+2023/10/27 05:07:00
+2023/10/27 05:07:00
+2023/10/27 05:08:55
+2023/10/27 05:08:55
+2023/10/27 05:10:50
+2023/10/27 05:10:51
+2023/10/27 05:12:46
+2023/10/27 05:12:47
+2023/10/27 05:14:57
+2023/10/27 05:14:57
+2023/10/27 05:16:52
+2023/10/27 05:16:53
+2023/10/27 05:18:48
+2023/10/27 05:18:49
+2023/10/27 05:20:44
+2023/10/27 05:20:44
+2023/10/27 05:22:54
+2023/10/27 05:22:55
+2023/10/27 05:24:50
+2023/10/27 05:24:51
+2023/10/27 05:27:01
+2023/10/27 05:27:01
+2023/10/27 05:28:56
+2023/10/27 05:28:57
+2023/10/27 05:31:07
+2023/10/27 05:31:07
+2023/10/27 05:33:02
+2023/10/27 05:33:02
+2023/10/27 05:34:57
+2023/10/27 05:34:58
+2023/10/27 05:36:53
+2023/10/27 05:36:53
+2023/10/27 05:39:03
+2023/10/27 05:39:03
+2023/10/27 05:40:58
+2023/10/27 05:40:59
+2023/10/27 05:42:54
+2023/10/27 05:42:55
+2023/10/27 05:45:20
+2023/10/27 05:45:21
+2023/10/27 05:47:16
+2023/10/27 05:47:17
+2023/10/27 05:48:42
+2023/10/27 05:48:43
+2023/10/27 05:50:53
+2023/10/27 05:50:53
+2023/10/27 05:53:03
+2023/10/27 05:53:04
+2023/10/27 05:54:44
+2023/10/27 05:54:44
+2023/10/27 05:56:54
+2023/10/27 05:56:54
+2023/10/27 05:58:49
+2023/10/27 05:58:49
+2023/10/27 06:00:59
+2023/10/27 06:01:02
+2023/10/27 06:02:42
+2023/10/27 06:02:42
+2023/10/27 06:04:52
+2023/10/27 06:04:53
+2023/10/27 06:06:48
+2023/10/27 06:06:53
+2023/10/27 06:09:03
+2023/10/27 06:09:03
+2023/10/27 06:11:13
+2023/10/27 06:11:14
+2023/10/27 06:12:54
+2023/10/27 06:12:56
+2023/10/27 06:15:06
+2023/10/27 06:15:07
+2023/10/27 06:17:02
+2023/10/27 06:17:05
+2023/10/27 06:18:45
+2023/10/27 06:18:46
+2023/10/27 06:20:41
+2023/10/27 06:20:42
+2023/10/27 06:22:52
+2023/10/27 06:22:52
+2023/10/27 06:24:47
+2023/10/27 06:24:47
+2023/10/27 06:26:42
+2023/10/27 06:26:42
+2023/10/27 06:28:52
+2023/10/27 06:28:54
+2023/10/27 06:30:49
+2023/10/27 06:30:51
+2023/10/27 06:32:46
+2023/10/27 06:32:46
+2023/10/27 06:34:56
+2023/10/27 06:34:57
+2023/10/27 06:36:52
+2023/10/27 06:36:53
+2023/10/27 06:39:03
+2023/10/27 06:39:03
+2023/10/27 06:41:13
+2023/10/27 06:41:15
+2023/10/27 06:43:10
+2023/10/27 06:43:10
+2023/10/27 06:44:50
+2023/10/27 06:44:51
+2023/10/27 06:47:16
+2023/10/27 06:47:18
+2023/10/27 06:48:43
+2023/10/27 06:48:43
+2023/10/27 06:50:53
+2023/10/27 06:50:54
+2023/10/27 06:52:49
+2023/10/27 06:52:49
+2023/10/27 06:54:59
+2023/10/27 06:55:01
+2023/10/27 06:56:41
+2023/10/27 06:56:42
+2023/10/27 06:59:07
+2023/10/27 06:59:14
+2023/10/27 07:00:54
+2023/10/27 07:00:55
+2023/10/27 07:02:50
+2023/10/27 07:02:51
+2023/10/27 07:05:01
+2023/10/27 07:05:02
+2023/10/27 07:06:57
+2023/10/27 07:06:58
+2023/10/27 07:08:53
+2023/10/27 07:08:54
+2023/10/27 07:11:04
+2023/10/27 07:11:05
+2023/10/27 07:12:45
+2023/10/27 07:12:45
+2023/10/27 07:14:40
+2023/10/27 07:14:42
+2023/10/27 07:16:52
+2023/10/27 07:16:53
+2023/10/27 07:18:48
+2023/10/27 07:18:48
+2023/10/27 07:20:58
+2023/10/27 07:21:11
+2023/10/27 07:22:51
+2023/10/27 07:22:54
+2023/10/27 07:24:49
+2023/10/27 07:24:53
+2023/10/27 07:26:48
+2023/10/27 07:26:49
+2023/10/27 07:29:14
+2023/10/27 07:29:16
+2023/10/27 07:30:56
+2023/10/27 07:30:57
+2023/10/27 07:33:07
+2023/10/27 07:33:11
+2023/10/27 07:35:06
+2023/10/27 07:35:07
+2023/10/27 07:36:47
+2023/10/27 07:36:51
+2023/10/27 07:38:46
+2023/10/27 07:38:47
+2023/10/27 07:40:57
+2023/10/27 07:40:58
+2023/10/27 07:43:08
+2023/10/27 07:43:08
+2023/10/27 07:44:48
+2023/10/27 07:44:50
+2023/10/27 07:47:00
+2023/10/27 07:47:01
+2023/10/27 07:48:56
+2023/10/27 07:48:57
+2023/10/27 07:51:07
+2023/10/27 07:51:07
+2023/10/27 07:53:02
+2023/10/27 07:53:02
+2023/10/27 07:54:57
+2023/10/27 07:55:01
+2023/10/27 07:56:56
+2023/10/27 07:57:01
+2023/10/27 07:58:56
+2023/10/27 07:58:59
+2023/10/27 08:00:54
+2023/10/27 08:00:55
+2023/10/27 08:03:05
+2023/10/27 08:03:10
+2023/10/27 08:05:05
+2023/10/27 08:05:09
+2023/10/27 08:06:49
+2023/10/27 08:06:49
+2023/10/27 08:08:59
+2023/10/27 08:09:03
+2023/10/27 08:10:58
+2023/10/27 08:11:02
+2023/10/27 08:12:57
+2023/10/27 08:12:59
+2023/10/27 08:14:54
+2023/10/27 08:15:02
+2023/10/27 08:16:57
+2023/10/27 08:16:59
+2023/10/27 08:18:54
+2023/10/27 08:18:56
+2023/10/27 08:20:51
+2023/10/27 08:20:58
+2023/10/27 08:23:08
+2023/10/27 08:23:18
+2023/10/27 08:24:58
+2023/10/27 08:25:00
+2023/10/27 08:27:10
+2023/10/27 08:27:12
+2023/10/27 08:28:52
+2023/10/27 08:28:53
+2023/10/27 08:31:03
+2023/10/27 08:31:42
+2023/10/27 08:33:07
+2023/10/27 08:33:13
+2023/10/27 08:35:23
+2023/10/27 08:35:30
+2023/10/27 08:37:10
+2023/10/27 08:37:13
+2023/10/27 08:39:08
+2023/10/27 08:39:12
+2023/10/27 08:41:37
+2023/10/27 08:41:50
+2023/10/27 08:43:15
+2023/10/27 08:43:17
+2023/10/27 08:44:57
+2023/10/27 08:45:04
+2023/10/27 08:47:29
+2023/10/27 08:48:30
+2023/10/27 08:48:55
+2023/10/27 08:48:58
+2023/10/27 08:51:08
+2023/10/27 08:51:13
+2023/10/27 08:53:38
+2023/10/27 08:53:48
+2023/10/27 08:55:13
+2023/10/27 08:55:18
+2023/10/27 08:57:13
+2023/10/27 08:57:15
+2023/10/27 08:58:55
+2023/10/27 08:58:57
+2023/10/27 09:01:22
+2023/10/27 09:01:26
+2023/10/27 09:03:21
+2023/10/27 09:03:26
+2023/10/27 09:05:06
+2023/10/27 09:05:08
+2023/10/27 09:07:18
+2023/10/27 09:07:26
+2023/10/27 09:09:06
+2023/10/27 09:09:10
+2023/10/27 09:11:05
+2023/10/27 09:11:08
+2023/10/27 09:13:33
+2023/10/27 09:13:40
+2023/10/27 09:15:05
+2023/10/27 09:15:08
+2023/10/27 09:17:03
+2023/10/27 09:17:06
+2023/10/27 09:19:16
+2023/10/27 09:19:20
+2023/10/27 09:21:00
+2023/10/27 09:21:05
+2023/10/27 09:23:00
+2023/10/27 09:23:02
+2023/10/27 09:25:12
+2023/10/27 09:25:21
+2023/10/27 09:26:46
+2023/10/27 09:26:48
+2023/10/27 09:28:58
+2023/10/27 09:29:03
+2023/10/27 09:31:43
+2023/10/27 09:33:00
+2023/10/27 09:33:40
+2023/10/27 09:34:47
+2023/10/27 09:35:12
+2023/10/27 09:35:16
+2023/10/27 09:36:56
+2023/10/27 09:36:58
+2023/10/27 09:39:38
+2023/10/27 09:39:53
+2023/10/27 09:41:33
+2023/10/27 09:42:27
+2023/10/27 09:43:22
+2023/10/27 09:43:30
+2023/10/27 09:45:40
+2023/10/27 09:45:46
+2023/10/27 09:47:41
+2023/10/27 09:47:49
+2023/10/27 09:49:29
+2023/10/27 09:49:34
+2023/10/27 09:51:29
+2023/10/27 09:51:40
+2023/10/27 09:54:05
+2023/10/27 09:54:18
+2023/10/27 09:55:28
+2023/10/27 09:55:43
+2023/10/27 09:57:38
+2023/10/27 09:57:44
+2023/10/27 10:00:24
+2023/10/27 10:00:34
+2023/10/27 10:01:59
+2023/10/27 10:02:07
+2023/10/27 10:04:32
+2023/10/27 10:05:09
+2023/10/27 10:06:04
+2023/10/27 10:06:26
+2023/10/27 10:07:51
+2023/10/27 10:07:57
+2023/10/27 10:09:37
+2023/10/27 10:09:44
+2023/10/27 10:11:54
+2023/10/27 10:12:42
+2023/10/27 10:14:22
+2023/10/27 10:14:46
+2023/10/27 10:16:56
+2023/10/27 10:17:47
+2023/10/27 10:18:12
+2023/10/27 10:18:19
+2023/10/27 10:20:14
+2023/10/27 10:21:07
+2023/10/27 10:21:32
+2023/10/27 10:21:37
+2023/10/27 10:23:02
+2023/10/27 10:23:07
+2023/10/27 10:25:02
+2023/10/27 10:25:30
+2023/10/27 10:27:55
+2023/10/27 10:28:12
+2023/10/27 10:29:52
+2023/10/27 10:30:14
+2023/10/27 10:31:39
+2023/10/27 10:31:55
+2023/10/27 10:33:50
+2023/10/27 10:33:54
+2023/10/27 10:35:34
+2023/10/27 10:35:43
+2023/10/27 10:37:53
+2023/10/27 10:38:09
+2023/10/27 10:39:34
+2023/10/27 10:39:39
+2023/10/27 10:41:49
+2023/10/27 10:42:25
+2023/10/27 10:43:50
+2023/10/27 10:43:59
+2023/10/27 10:45:54
+2023/10/27 10:46:13
+2023/10/27 10:47:38
+2023/10/27 10:47:46
+2023/10/27 10:50:11
+2023/10/27 10:50:21
+2023/10/27 10:52:01
+2023/10/27 10:52:41
+2023/10/27 10:53:51
+2023/10/27 10:53:59
+2023/10/27 10:55:54
+2023/10/27 10:56:18
+2023/10/27 10:57:28
+2023/10/27 10:57:38
+2023/10/27 10:59:48
+2023/10/27 10:59:55
+2023/10/27 11:01:35
+2023/10/27 11:01:48
+2023/10/27 11:03:43
+2023/10/27 11:03:48
+2023/10/27 11:05:58
+2023/10/27 11:06:10
+2023/10/27 11:07:50
+2023/10/27 11:08:02
+2023/10/27 11:09:27
+2023/10/27 11:09:36
+2023/10/27 11:11:46
+2023/10/27 11:11:52
+2023/10/27 11:13:32
+2023/10/27 11:13:35
+2023/10/27 11:15:45
+2023/10/27 11:15:54
+2023/10/27 11:17:49
+2023/10/27 11:17:55
+2023/10/27 11:19:50
+2023/10/27 11:19:59
+2023/10/27 11:22:09
+2023/10/27 11:22:20
+2023/10/27 11:24:00
+2023/10/27 11:24:17
+2023/10/27 11:26:12
+2023/10/27 11:26:21
+2023/10/27 11:28:31
+2023/10/27 11:28:50
+2023/10/27 11:31:01
+2023/10/27 11:32:31
+2023/10/27 11:32:56
+2023/10/27 11:34:25
+2023/10/27 11:34:50
+2023/10/27 11:35:04
+2023/10/27 11:35:59
+2023/10/27 11:36:19
+2023/10/27 11:37:59
+2023/10/27 11:38:07
+2023/10/27 11:39:47
+2023/10/27 11:40:01
+2023/10/27 11:42:26
+2023/10/27 11:42:36
+2023/10/27 11:44:01
+2023/10/27 11:44:17
+2023/10/27 11:46:57
+2023/10/27 11:49:04
+2023/10/27 11:49:29
+2023/10/27 11:49:38
+2023/10/27 11:50:03
+2023/10/27 11:50:17
+2023/10/27 11:52:12
+2023/10/27 11:52:17
+2023/10/27 11:53:57
+2023/10/27 11:54:15
+2023/10/27 11:55:25
+2023/10/27 11:55:31
+2023/10/27 11:57:41
+2023/10/27 11:57:46
+2023/10/27 12:00:26
+2023/10/27 12:00:37
+2023/10/27 12:01:32
+2023/10/27 12:01:36
+2023/10/27 12:03:46
+2023/10/27 12:03:50
+2023/10/27 12:06:15
+2023/10/27 12:06:25
+2023/10/27 12:07:35
+2023/10/27 12:07:40
+2023/10/27 12:09:35
+2023/10/27 12:09:41
+2023/10/27 12:11:36
+2023/10/27 12:11:53
+2023/10/27 12:13:48
+2023/10/27 12:13:57
+2023/10/27 12:15:37
+2023/10/27 12:15:41
+2023/10/27 12:18:06
+2023/10/27 12:18:10
+2023/10/27 12:19:35
+2023/10/27 12:19:39
+2023/10/27 12:21:19
+2023/10/27 12:21:32
+2023/10/27 12:23:42
+2023/10/27 12:23:48
+2023/10/27 12:25:28
+2023/10/27 12:25:32
+2023/10/27 12:27:27
+2023/10/27 12:27:32
+2023/10/27 12:30:12
+2023/10/27 12:30:19
+2023/10/27 12:31:59
+2023/10/27 12:33:05
+2023/10/27 12:33:30
+2023/10/27 12:33:39
+2023/10/27 12:35:34
+2023/10/27 12:35:42
+2023/10/27 12:37:07
+2023/10/27 12:37:09
+2023/10/27 12:39:19
+2023/10/27 12:39:22
+2023/10/27 12:42:02
+2023/10/27 12:43:10
+2023/10/27 12:43:35
+2023/10/27 12:43:46
+2023/10/27 12:45:26
+2023/10/27 12:45:28
+2023/10/27 12:47:38
+2023/10/27 12:47:45
+2023/10/27 12:49:10
+2023/10/27 12:49:22
+2023/10/27 12:51:32
+2023/10/27 12:51:39
+2023/10/27 12:53:04
+2023/10/27 12:53:11
+2023/10/27 12:55:21
+2023/10/27 12:55:27
+2023/10/27 12:57:07
+2023/10/27 12:57:11
+2023/10/27 12:59:21
+2023/10/27 12:59:24
+2023/10/27 13:01:19
+2023/10/27 13:01:24
+2023/10/27 13:03:19
+2023/10/27 13:03:24
+2023/10/27 13:05:34
+2023/10/27 13:05:36
+2023/10/27 13:07:16
+2023/10/27 13:07:24
+2023/10/27 13:09:04
+2023/10/27 13:09:06
+2023/10/27 13:11:01
+2023/10/27 13:11:04
+2023/10/27 13:13:29
+2023/10/27 13:13:35
+2023/10/27 13:15:15
+2023/10/27 13:15:17
+2023/10/27 13:17:27
+2023/10/27 13:17:28
+2023/10/27 13:19:23
+2023/10/27 13:19:25
+2023/10/27 13:21:05
+2023/10/27 13:21:08
+2023/10/27 13:23:03
+2023/10/27 13:23:05
+2023/10/27 13:25:15
+2023/10/27 13:25:17
+2023/10/27 13:27:27
+2023/10/27 13:27:32
+2023/10/27 13:29:27
+2023/10/27 13:29:29
+2023/10/27 13:31:24
+2023/10/27 13:31:28
+2023/10/27 13:33:08
+2023/10/27 13:33:14
+2023/10/27 13:35:24
+2023/10/27 13:35:26
+2023/10/27 13:37:21
+2023/10/27 13:37:24
+2023/10/27 13:39:19
+2023/10/27 13:39:21
+2023/10/27 13:41:31
+2023/10/27 13:41:57
+2023/10/27 13:43:37
+2023/10/27 13:44:31
+2023/10/27 13:45:11
+2023/10/27 13:45:16
+2023/10/27 13:47:41
+2023/10/27 13:47:50
+2023/10/27 13:49:30
+2023/10/27 13:49:35
+2023/10/27 13:51:30
+2023/10/27 13:51:35
+2023/10/27 13:54:00
+2023/10/27 13:54:08
+2023/10/27 13:55:33
+2023/10/27 13:55:35
+2023/10/27 13:57:30
+2023/10/27 13:57:39
+2023/10/27 13:59:19
+2023/10/27 13:59:23
+2023/10/27 14:01:33
+2023/10/27 14:01:39
+2023/10/27 14:03:19
+2023/10/27 14:03:21
+2023/10/27 14:05:31
+2023/10/27 14:05:38
+2023/10/27 14:07:18
+2023/10/27 14:07:25
+2023/10/27 14:09:35
+2023/10/27 14:09:39
+2023/10/27 14:11:34
+2023/10/27 14:11:44
+2023/10/27 14:13:24
+2023/10/27 14:13:27
+2023/10/27 14:15:22
+2023/10/27 14:15:25
+2023/10/27 14:17:20
+2023/10/27 14:17:32
+2023/10/27 14:19:42
+2023/10/27 14:19:49
+2023/10/27 14:21:29
+2023/10/27 14:21:37
+2023/10/27 14:23:02
+2023/10/27 14:23:06
+2023/10/27 14:25:31
+2023/10/27 14:25:36
+2023/10/27 14:27:32
+2023/10/27 14:27:34
+2023/10/27 14:29:44
+2023/10/27 14:30:15
+2023/10/27 14:32:10
+2023/10/27 14:32:54
+2023/10/27 14:33:19
+2023/10/27 14:33:35
+2023/10/27 14:35:30
+2023/10/27 14:35:34
+2023/10/27 14:37:44
+2023/10/27 14:37:53
+2023/10/27 14:40:03
+2023/10/27 14:40:45
+2023/10/27 14:41:25
+2023/10/27 14:41:39
+2023/10/27 14:43:34
+2023/10/27 14:43:43
+2023/10/27 14:45:53
+2023/10/27 14:46:01
+2023/10/27 14:47:26
+2023/10/27 14:47:29
+2023/10/27 14:49:54
+2023/10/27 14:50:03
+2023/10/27 14:51:28
+2023/10/27 14:51:34
+2023/10/27 14:53:59
+2023/10/27 14:54:03
+2023/10/27 14:55:28
+2023/10/27 14:55:35
+2023/10/27 14:58:00
+2023/10/27 14:58:10
+2023/10/27 14:59:20
+2023/10/27 14:59:25
+2023/10/27 15:01:50
+2023/10/27 15:02:03
+2023/10/27 15:03:58
+2023/10/27 15:04:06
+2023/10/27 15:05:46
+2023/10/27 15:05:49
+2023/10/27 15:07:44
+2023/10/27 15:07:57
+2023/10/27 15:09:52
+2023/10/27 15:10:03
+2023/10/27 15:11:43
+2023/10/27 15:11:48
+2023/10/27 15:13:58
+2023/10/27 15:14:06
+2023/10/27 15:16:01
+2023/10/27 15:16:11
+2023/10/27 15:17:51
+2023/10/27 15:17:57
+2023/10/27 15:19:37
+2023/10/27 15:19:44
+2023/10/27 15:21:24
+2023/10/27 15:21:30
+2023/10/27 15:23:40
+2023/10/27 15:23:47
+2023/10/27 15:25:27
+2023/10/27 15:25:37
+2023/10/27 15:28:02
+2023/10/27 15:28:11
+2023/10/27 15:29:51
+2023/10/27 15:29:56
+2023/10/27 15:32:51
+2023/10/27 15:35:10
+2023/10/27 15:35:35
+2023/10/27 15:35:42
+2023/10/27 15:36:07
+2023/10/27 15:36:15
+2023/10/27 15:37:40
+2023/10/27 15:37:49
+2023/10/27 15:40:14
+2023/10/27 15:40:25
+2023/10/27 15:42:35
+2023/10/27 15:44:33
+2023/10/27 15:44:58
+2023/10/27 15:45:18
+2023/10/27 15:46:13
+2023/10/27 15:46:19
+2023/10/27 15:48:14
+2023/10/27 15:48:29
+2023/10/27 15:50:54
+2023/10/27 15:51:07
+2023/10/27 15:51:47
+2023/10/27 15:52:08
+2023/10/27 15:53:18
+2023/10/27 15:53:31
+2023/10/27 15:55:11
+2023/10/27 15:55:20
+2023/10/27 15:57:15
+2023/10/27 15:57:20
+2023/10/27 15:59:15
+2023/10/27 15:59:17
+2023/10/27 16:01:12
+2023/10/27 16:01:19
+2023/10/27 16:03:14
+2023/10/27 16:03:19
+2023/10/27 16:04:59
+2023/10/27 16:05:02
+2023/10/27 16:07:12
+2023/10/27 16:07:19
+2023/10/27 16:09:29
+2023/10/27 16:09:34
+2023/10/27 16:11:59
+2023/10/27 16:12:13
+2023/10/27 16:15:38
+2023/10/27 16:15:56
+2023/10/27 16:17:21
+2023/10/27 16:17:37
+2023/10/27 16:18:32
+2023/10/27 16:18:43
+2023/10/27 16:20:08
+2023/10/27 16:20:17
+2023/10/27 16:23:12
+2023/10/27 16:23:26
+2023/10/27 16:24:21
+2023/10/27 16:24:34
+2023/10/27 16:27:29
+2023/10/27 16:27:53
+2023/10/27 16:28:33
+2023/10/27 16:28:51
+2023/10/27 16:30:02
+2023/10/27 16:30:11
+2023/10/27 16:32:06
+2023/10/27 16:33:52
+2023/10/27 16:34:17
+2023/10/27 16:35:35
+2023/10/27 16:36:00
+2023/10/27 16:36:19
+2023/10/27 16:39:45
+2023/10/27 16:40:05
+2023/10/27 16:41:30
+2023/10/27 16:42:48
+2023/10/27 16:43:44
+2023/10/27 16:44:18
+2023/10/27 16:45:58
+2023/10/27 16:46:15
+2023/10/27 16:47:40
+2023/10/27 16:48:06
+2023/10/27 16:49:31
+2023/10/27 16:49:43
+2023/10/27 16:51:08
+2023/10/27 16:52:13
+2023/10/27 16:52:38
+2023/10/27 16:52:49
+2023/10/27 16:54:44
+2023/10/27 16:55:11
+2023/10/27 16:56:36
+2023/10/27 16:57:05
+2023/10/27 16:58:45
+2023/10/27 16:59:10
+2023/10/27 17:00:50
+2023/10/27 17:01:03
+2023/10/27 17:02:43
+2023/10/27 17:02:58
+2023/10/27 17:04:08
+2023/10/27 17:04:16
+2023/10/27 17:06:11
+2023/10/27 17:06:23
+2023/10/27 17:08:48
+2023/10/27 17:08:58
+2023/10/27 17:10:23
+2023/10/27 17:10:33
+2023/10/27 17:12:13
+2023/10/27 17:12:29
+2023/10/27 17:13:54
+2023/10/27 17:14:12
+2023/10/27 17:16:52
+2023/10/27 17:17:05
+2023/10/27 17:18:30
+2023/10/27 17:18:52
+2023/10/27 17:20:02
+2023/10/27 17:20:10
+2023/10/27 17:22:36
+2023/10/27 17:22:56
+2023/10/27 17:24:36
+2023/10/27 17:24:47
+2023/10/27 17:25:57
+2023/10/27 17:26:04
+2023/10/27 17:28:44
+2023/10/27 17:29:03
+2023/10/27 17:29:58
+2023/10/27 17:30:11
+2023/10/27 17:32:21
+2023/10/27 17:32:29
+2023/10/27 17:34:54
+2023/10/27 17:35:03
+2023/10/27 17:35:58
+2023/10/27 17:36:05
+2023/10/27 17:38:45
+2023/10/27 17:38:56
+2023/10/27 17:41:06
+2023/10/27 17:42:13
+2023/10/27 17:42:53
+2023/10/27 17:43:53
+2023/10/27 17:45:03
+2023/10/27 17:45:22
+2023/10/27 17:46:32
+2023/10/27 17:47:04
+2023/10/27 17:48:44
+2023/10/27 17:49:14
+2023/10/27 17:50:54
+2023/10/27 17:51:07
+2023/10/27 17:53:32
+2023/10/27 17:53:59
+2023/10/27 17:54:39
+2023/10/27 17:55:01
+2023/10/27 17:55:56
+2023/10/27 17:56:03
+2023/10/27 17:58:13
+2023/10/27 17:58:29
+2023/10/27 18:00:09
+2023/10/27 18:00:23
+2023/10/27 18:02:33
+2023/10/27 18:02:44
+2023/10/27 18:04:39
+2023/10/27 18:04:48
+2023/10/27 18:06:28
+2023/10/27 18:06:34
+2023/10/27 18:08:29
+2023/10/27 18:08:38
+2023/10/27 18:10:33
+2023/10/27 18:10:44
+2023/10/27 18:12:24
+2023/10/27 18:12:33
+2023/10/27 18:14:13
+2023/10/27 18:14:21
+2023/10/27 18:17:01
+2023/10/27 18:17:13
+2023/10/27 18:18:38
+2023/10/27 18:18:51
+2023/10/27 18:20:31
+2023/10/27 18:20:43
+2023/10/27 18:22:23
+2023/10/27 18:22:34
+2023/10/27 18:25:44
+2023/10/27 18:25:53
+2023/10/27 18:27:49
+2023/10/27 18:28:02
+2023/10/27 18:29:12
+2023/10/27 18:29:26
+2023/10/27 18:31:51
+2023/10/27 18:32:06
+2023/10/27 18:34:01
+2023/10/27 18:34:38
+2023/10/27 18:36:33
+2023/10/27 18:36:52
+2023/10/27 18:38:02
+2023/10/27 18:38:19
+2023/10/27 18:40:44
+2023/10/27 18:40:55
+2023/10/27 18:41:50
+2023/10/27 18:42:00
+2023/10/27 18:44:55
+2023/10/27 18:45:50
+2023/10/27 18:46:15
+2023/10/27 18:46:28
+2023/10/27 18:48:53
+2023/10/27 18:49:05
+2023/10/27 18:50:00
+2023/10/27 18:50:08
+2023/10/27 18:50:48
+2023/10/27 18:51:22
+2023/10/27 18:52:47
+2023/10/27 18:53:01
+2023/10/27 18:53:41
+2023/10/27 18:53:47
+2023/10/27 18:56:12
+2023/10/27 18:56:16
+2023/10/27 18:57:26
+2023/10/27 18:57:31
+2023/10/27 19:00:11
+2023/10/27 19:00:20
+2023/10/27 19:01:45
+2023/10/27 19:01:50
+2023/10/27 19:04:00
+2023/10/27 19:04:03
+2023/10/27 19:05:43
+2023/10/27 19:05:46
+2023/10/27 19:08:41
+2023/10/27 19:08:51
+2023/10/27 19:09:31
+2023/10/27 19:09:34
+2023/10/27 19:11:29
+2023/10/27 19:11:31
+2023/10/27 19:14:26
+2023/10/27 19:14:33
+2023/10/27 19:15:13
+2023/10/27 19:15:15
+2023/10/27 19:18:10
+2023/10/27 19:18:18
+2023/10/27 19:19:58
+2023/10/27 19:20:14
+2023/10/27 19:21:39
+2023/10/27 19:21:42
+2023/10/27 19:24:07
+2023/10/27 19:24:20
+2023/10/27 19:25:45
+2023/10/27 19:25:48
+2023/10/27 19:27:58
+2023/10/27 19:28:11
+2023/10/27 19:29:21
+2023/10/27 19:29:24
+2023/10/27 19:31:49
+2023/10/27 19:31:53
+2023/10/27 19:34:03
+2023/10/27 19:34:08
+2023/10/27 19:35:18
+2023/10/27 19:35:19
+2023/10/27 19:37:44
+2023/10/27 19:37:47
+2023/10/27 19:39:27
+2023/10/27 19:39:47
+2023/10/27 19:41:42
+2023/10/27 19:41:46
+2023/10/27 19:43:41
+2023/10/27 19:43:43
+2023/10/27 19:45:23
+2023/10/27 19:45:26
+2023/10/27 19:47:51
+2023/10/27 19:48:02
+2023/10/27 19:48:57
+2023/10/27 19:49:03
+2023/10/27 19:51:43
+2023/10/27 19:51:51
+2023/10/27 19:53:46
+2023/10/27 19:53:50
+2023/10/27 19:55:15
+2023/10/27 19:55:16
+2023/10/27 19:57:27
+2023/10/27 19:57:31
+2023/10/27 19:59:26
+2023/10/27 19:59:30
+2023/10/27 20:01:40
+2023/10/27 20:01:43
+2023/10/27 20:03:23
+2023/10/27 20:03:24
+2023/10/27 20:05:49
+2023/10/27 20:05:57
+2023/10/27 20:07:37
+2023/10/27 20:07:39
+2023/10/27 20:09:19
+2023/10/27 20:09:22
+2023/10/27 20:12:02
+2023/10/27 20:12:05
+2023/10/27 20:13:30
+2023/10/27 20:13:34
+2023/10/27 20:15:29
+2023/10/27 20:15:33
+2023/10/27 20:17:28
+2023/10/27 20:17:30
+2023/10/27 20:19:25
+2023/10/27 20:19:31
+2023/10/27 20:21:26
+2023/10/27 20:21:34
+2023/10/27 20:23:29
+2023/10/27 20:23:32
+2023/10/27 20:25:27
+2023/10/27 20:25:30
+2023/10/27 20:27:25
+2023/10/27 20:27:28
+2023/10/27 20:29:23
+2023/10/27 20:29:25
+2023/10/27 20:31:35
+2023/10/27 20:32:02
+2023/10/27 20:33:42
+2023/10/27 20:33:44
+2023/10/27 20:35:09
+2023/10/27 20:35:12
+2023/10/27 20:37:37
+2023/10/27 20:37:39
+2023/10/27 20:39:34
+2023/10/27 20:39:35
+2023/10/27 20:41:45
+2023/10/27 20:41:56
+2023/10/27 20:43:21
+2023/10/27 20:43:24
+2023/10/27 20:45:19
+2023/10/27 20:45:21
+2023/10/27 20:47:46
+2023/10/27 20:47:49
+2023/10/27 20:49:44
+2023/10/27 20:49:48
+2023/10/27 20:51:28
+2023/10/27 20:51:32
+2023/10/27 20:53:27
+2023/10/27 20:53:29
+2023/10/27 20:55:24
+2023/10/27 20:55:26
+2023/10/27 20:57:36
+2023/10/27 20:57:37
+2023/10/27 20:59:32
+2023/10/27 20:59:34
+2023/10/27 21:01:44
+2023/10/27 21:01:45
+2023/10/27 21:03:10
+2023/10/27 21:03:12
+2023/10/27 21:04:52
+2023/10/27 21:04:53
+2023/10/27 21:07:18
+2023/10/27 21:07:19
+2023/10/27 21:08:59
+2023/10/27 21:09:01
+2023/10/27 21:10:56
+2023/10/27 21:10:57
+2023/10/27 21:13:37
+2023/10/27 21:13:40
+2023/10/27 21:15:05
+2023/10/27 21:15:07
+2023/10/27 21:16:47
+2023/10/27 21:16:48
+2023/10/27 21:19:58
+2023/10/27 21:20:05
+2023/10/27 21:21:00
+2023/10/27 21:21:03
+2023/10/27 21:22:43
+2023/10/27 21:22:45
+2023/10/27 21:25:40
+2023/10/27 21:25:42
+2023/10/27 21:26:52
+2023/10/27 21:26:54
+2023/10/27 21:28:49
+2023/10/27 21:28:53
+2023/10/27 21:30:48
+2023/10/27 21:30:56
+2023/10/27 21:33:06
+2023/10/27 21:33:08
+2023/10/27 21:35:03
+2023/10/27 21:35:04
+2023/10/27 21:36:45
+2023/10/27 21:36:45
+2023/10/27 21:38:40
+2023/10/27 21:38:42
+2023/10/27 21:41:07
+2023/10/27 21:41:12
+2023/10/27 21:42:52
+2023/10/27 21:42:57
+2023/10/27 21:44:37
+2023/10/27 21:44:39
+2023/10/27 21:47:04
+2023/10/27 21:47:07
+2023/10/27 21:48:47
+2023/10/27 21:48:48
+2023/10/27 21:50:58
+2023/10/27 21:51:00
+2023/10/27 21:52:55
+2023/10/27 21:52:58
+2023/10/27 21:54:53
+2023/10/27 21:54:55
+2023/10/27 21:57:05
+2023/10/27 21:57:08
+2023/10/27 21:58:48
+2023/10/27 21:58:49
+2023/10/27 22:01:14
+2023/10/27 22:01:15
+2023/10/27 22:03:10
+2023/10/27 22:03:13
+2023/10/27 22:04:38
+2023/10/27 22:04:39
+2023/10/27 22:06:49
+2023/10/27 22:06:51
+2023/10/27 22:08:46
+2023/10/27 22:08:48
+2023/10/27 22:10:58
+2023/10/27 22:10:59
+2023/10/27 22:12:39
+2023/10/27 22:12:41
+2023/10/27 22:14:51
+2023/10/27 22:14:52
+2023/10/27 22:17:02
+2023/10/27 22:17:03
+2023/10/27 22:18:59
+2023/10/27 22:19:02
+2023/10/27 22:20:42
+2023/10/27 22:20:44
+2023/10/27 22:22:54
+2023/10/27 22:22:55
+2023/10/27 22:24:50
+2023/10/27 22:24:52
+2023/10/27 22:26:47
+2023/10/27 22:26:50
+2023/10/27 22:29:00
+2023/10/27 22:29:01
+2023/10/27 22:31:11
+2023/10/27 22:31:16
+2023/10/27 22:32:41
+2023/10/27 22:32:43
+2023/10/27 22:34:38
+2023/10/27 22:34:39
+2023/10/27 22:36:34
+2023/10/27 22:36:35
+2023/10/27 22:39:00
+2023/10/27 22:39:03
+2023/10/27 22:40:43
+2023/10/27 22:40:48
+2023/10/27 22:42:58
+2023/10/27 22:42:59
+2023/10/27 22:44:54
+2023/10/27 22:45:03
+2023/10/27 22:46:58
+2023/10/27 22:47:30
+2023/10/27 22:48:55
+2023/10/27 22:49:24
+2023/10/27 22:50:49
+2023/10/27 22:50:49
+2023/10/27 22:52:59
+2023/10/27 22:53:34
+2023/10/27 22:54:59
+2023/10/27 22:55:00
+2023/10/27 22:56:55
+2023/10/27 22:57:00
+2023/10/27 22:58:55
+2023/10/27 22:58:57
+2023/10/27 23:00:37
+2023/10/27 23:00:37
+2023/10/27 23:02:47
+2023/10/27 23:02:49
+2023/10/27 23:04:59
+2023/10/27 23:05:00
+2023/10/27 23:06:40
+2023/10/27 23:06:45
+2023/10/27 23:08:55
+2023/10/27 23:09:02
+2023/10/27 23:10:42
+2023/10/27 23:10:42
+2023/10/27 23:12:52
+2023/10/27 23:12:53
+2023/10/27 23:14:48
+2023/10/27 23:14:55
+2023/10/27 23:16:50
+2023/10/27 23:16:55
+2023/10/27 23:19:05
+2023/10/27 23:19:11
+2023/10/27 23:20:51
+2023/10/27 23:20:55
+2023/10/27 23:22:50
+2023/10/27 23:22:51
+2023/10/27 23:25:01
+2023/10/27 23:25:04
+2023/10/27 23:26:44
+2023/10/27 23:26:47
+2023/10/27 23:28:57
+2023/10/27 23:29:03
+2023/10/27 23:30:58
+2023/10/27 23:31:02
+2023/10/27 23:32:27
+2023/10/27 23:32:28
+2023/10/27 23:35:53
+2023/10/27 23:35:55
+2023/10/27 23:36:35
+2023/10/27 23:36:36
+2023/10/27 23:39:01
+2023/10/27 23:39:04
+2023/10/27 23:40:44
+2023/10/27 23:40:55
+2023/10/27 23:42:50
+2023/10/27 23:42:50
+2023/10/27 23:44:45
+2023/10/27 23:44:51
+2023/10/27 23:46:46
+2023/10/27 23:46:47
+2023/10/27 23:48:42
+2023/10/27 23:48:44
+2023/10/27 23:51:09
+2023/10/27 23:51:10
+2023/10/27 23:52:50
+2023/10/27 23:53:01
+2023/10/27 23:54:41
+2023/10/27 23:54:42
+2023/10/27 23:56:52
+2023/10/27 23:56:54
+2023/10/27 23:58:49
+2023/10/27 23:58:49

BIN
listen_data/src/res/史赛克品牌.xlsx


+ 720 - 0
listen_data/src/res/抽取数量.txt

@@ -0,0 +1,720 @@
+88
+137
+255
+29
+524
+859
+327
+394
+355
+228
+250
+175
+174
+281
+153
+77
+459
+125
+157
+174
+1225
+400
+420
+209
+274
+199
+76
+187
+174
+324
+201
+206
+350
+330
+413
+327
+204
+167
+196
+222
+181
+248
+104
+67
+424
+119
+109
+138
+227
+100
+459
+309
+237
+202
+100
+253
+228
+154
+116
+144
+234
+197
+103
+112
+199
+114
+111
+226
+411
+187
+119
+101
+56
+207
+102
+162
+207
+77
+85
+281
+345
+119
+259
+74
+144
+166
+103
+180
+151
+40
+126
+136
+112
+152
+385
+79
+49
+242
+219
+219
+91
+60
+65
+98
+126
+95
+156
+94
+75
+371
+55
+123
+80
+295
+99
+194
+233
+111
+111
+89
+50
+81
+55
+84
+177
+240
+116
+39
+64
+174
+203
+93
+80
+89
+61
+201
+92
+73
+137
+216
+285
+64
+154
+99
+30
+102
+71
+234
+177
+124
+56
+76
+190
+146
+103
+115
+139
+126
+143
+167
+74
+62
+148
+160
+132
+116
+44
+66
+116
+231
+156
+44
+239
+238
+63
+123
+78
+74
+310
+100
+125
+83
+59
+87
+89
+297
+113
+82
+39
+68
+112
+48
+121
+11
+44
+298
+45
+86
+33
+95
+460
+149
+40
+303
+58
+159
+39
+104
+25
+210
+173
+38
+51
+149
+76
+112
+45
+63
+185
+133
+168
+113
+70
+65
+242
+111
+151
+149
+116
+161
+59
+327
+138
+83
+82
+216
+104
+203
+230
+151
+172
+193
+183
+64
+201
+112
+152
+108
+123
+127
+124
+277
+76
+140
+95
+604
+215
+376
+289
+232
+579
+224
+252
+1005
+169
+287
+411
+356
+290
+338
+430
+572
+260
+610
+323
+325
+465
+342
+215
+437
+445
+258
+708
+227
+272
+1282
+1497
+347
+314
+977
+1225
+524
+551
+647
+488
+589
+823
+715
+571
+819
+781
+957
+1245
+769
+666
+1402
+1038
+1386
+1112
+1631
+637
+487
+602
+1144
+1089
+930
+823
+592
+935
+539
+1200
+789
+1003
+783
+845
+1508
+680
+927
+568
+629
+951
+723
+974
+649
+655
+772
+622
+739
+904
+940
+1130
+769
+1055
+942
+1775
+1915
+827
+802
+701
+803
+1140
+1009
+2420
+671
+911
+685
+860
+760
+617
+943
+500
+550
+877
+802
+639
+508
+619
+714
+541
+547
+813
+631
+518
+569
+694
+1443
+444
+579
+350
+377
+1562
+873
+529
+531
+514
+445
+253
+319
+176
+400
+420
+380
+370
+470
+217
+287
+367
+285
+402
+271
+285
+235
+324
+473
+220
+407
+405
+193
+240
+307
+836
+1129
+386
+882
+400
+357
+536
+344
+595
+319
+533
+336
+411
+507
+431
+605
+490
+492
+350
+625
+555
+280
+537
+439
+806
+1072
+519
+423
+675
+1212
+870
+647
+735
+371
+651
+541
+663
+527
+805
+454
+905
+734
+506
+798
+579
+695
+845
+830
+668
+689
+619
+694
+742
+762
+579
+2339
+831
+681
+649
+664
+2408
+899
+715
+1170
+907
+1014
+490
+474
+427
+305
+595
+442
+283
+471
+506
+796
+1324
+794
+922
+940
+1401
+1050
+1083
+881
+851
+1796
+1586
+820
+1465
+1897
+1184
+1078
+1650
+947
+1767
+679
+1320
+1001
+975
+960
+1164
+710
+1219
+1105
+953
+850
+1008
+972
+1209
+683
+980
+779
+613
+1046
+835
+819
+691
+711
+760
+1770
+1369
+1182
+1318
+1167
+1086
+1165
+878
+704
+836
+1003
+764
+751
+761
+831
+777
+966
+814
+961
+883
+935
+867
+954
+841
+992
+942
+1337
+784
+909
+946
+784
+1734
+566
+1259
+663
+838
+946
+425
+641
+288
+709
+522
+415
+351
+610
+397
+286
+547
+344
+727
+828
+353
+673
+372
+653
+442
+374
+452
+221
+342
+945
+440
+440
+357
+682
+148
+423
+407
+216
+309
+375
+324
+196
+429
+260
+247
+438
+392
+272
+275
+430
+315
+291
+237
+238
+276
+559
+409
+144
+285
+282
+786
+246
+312
+409
+366
+243
+378
+172
+261
+259
+252
+271
+141
+262
+399
+130
+381
+163
+118
+356
+242
+192
+332
+129
+269
+138
+205
+197
+194
+195
+534
+483
+202
+404
+204
+400
+383
+325
+199
+33
+410
+347
+121
+285
+246
+258
+239
+309
+292
+272
+354
+202
+241
+279
+173
+464
+251
+140
+227
+323
+370
+242
+445
+376
+284
+121
+356
+316
+202
+204
+106
+159
+161
+250
+266
+64
+275
+169
+343
+302
+117
+174
+322
+152
+397
+213
+41
+327
+151
+352
+226
+108
+420
+112
+174
+299
+65
+144
+143
+59

+ 1440 - 0
listen_data/src/res/抽取时间.txt

@@ -0,0 +1,1440 @@
+2023/10/27 00:00:16
+2023/10/27 00:00:27
+2023/10/27 00:02:16
+2023/10/27 00:02:27
+2023/10/27 00:04:16
+2023/10/27 00:04:29
+2023/10/27 00:06:16
+2023/10/27 00:06:23
+2023/10/27 00:08:16
+2023/10/27 00:08:59
+2023/10/27 00:10:16
+2023/10/27 00:10:54
+2023/10/27 00:12:16
+2023/10/27 00:12:33
+2023/10/27 00:14:16
+2023/10/27 00:14:54
+2023/10/27 00:16:17
+2023/10/27 00:16:36
+2023/10/27 00:18:17
+2023/10/27 00:18:43
+2023/10/27 00:20:17
+2023/10/27 00:20:37
+2023/10/27 00:22:17
+2023/10/27 00:22:35
+2023/10/27 00:24:17
+2023/10/27 00:24:37
+2023/10/27 00:26:17
+2023/10/27 00:26:40
+2023/10/27 00:28:17
+2023/10/27 00:28:36
+2023/10/27 00:30:17
+2023/10/27 00:30:25
+2023/10/27 00:32:17
+2023/10/27 00:32:46
+2023/10/27 00:34:17
+2023/10/27 00:34:27
+2023/10/27 00:36:17
+2023/10/27 00:36:34
+2023/10/27 00:38:17
+2023/10/27 00:38:29
+2023/10/27 00:40:17
+2023/10/27 00:41:08
+2023/10/27 00:42:17
+2023/10/27 00:42:59
+2023/10/27 00:44:17
+2023/10/27 00:44:46
+2023/10/27 00:46:17
+2023/10/27 00:46:38
+2023/10/27 00:48:17
+2023/10/27 00:48:31
+2023/10/27 00:50:17
+2023/10/27 00:50:36
+2023/10/27 00:52:17
+2023/10/27 00:52:23
+2023/10/27 00:54:17
+2023/10/27 00:54:33
+2023/10/27 00:56:17
+2023/10/27 00:56:29
+2023/10/27 00:58:17
+2023/10/27 00:58:44
+2023/10/27 01:00:17
+2023/10/27 01:00:33
+2023/10/27 01:02:17
+2023/10/27 01:02:33
+2023/10/27 01:04:17
+2023/10/27 01:04:39
+2023/10/27 01:06:17
+2023/10/27 01:06:51
+2023/10/27 01:08:17
+2023/10/27 01:08:43
+2023/10/27 01:10:17
+2023/10/27 01:10:52
+2023/10/27 01:12:17
+2023/10/27 01:12:42
+2023/10/27 01:14:17
+2023/10/27 01:14:30
+2023/10/27 01:16:17
+2023/10/27 01:16:33
+2023/10/27 01:18:17
+2023/10/27 01:18:33
+2023/10/27 01:20:17
+2023/10/27 01:20:30
+2023/10/27 01:22:17
+2023/10/27 01:22:44
+2023/10/27 01:24:17
+2023/10/27 01:24:25
+2023/10/27 01:26:17
+2023/10/27 01:26:24
+2023/10/27 01:28:17
+2023/10/27 01:28:58
+2023/10/27 01:30:17
+2023/10/27 01:30:25
+2023/10/27 01:32:17
+2023/10/27 01:32:29
+2023/10/27 01:34:17
+2023/10/27 01:34:29
+2023/10/27 01:36:17
+2023/10/27 01:36:32
+2023/10/27 01:38:17
+2023/10/27 01:38:29
+2023/10/27 01:40:17
+2023/10/27 01:40:35
+2023/10/27 01:42:17
+2023/10/27 01:42:43
+2023/10/27 01:44:17
+2023/10/27 01:44:30
+2023/10/27 01:46:17
+2023/10/27 01:46:38
+2023/10/27 01:48:17
+2023/10/27 01:48:29
+2023/10/27 01:50:17
+2023/10/27 01:50:29
+2023/10/27 01:52:17
+2023/10/27 01:52:35
+2023/10/27 01:54:17
+2023/10/27 01:54:34
+2023/10/27 01:56:17
+2023/10/27 01:56:32
+2023/10/27 01:58:17
+2023/10/27 01:58:32
+2023/10/27 02:00:17
+2023/10/27 02:00:30
+2023/10/27 02:02:17
+2023/10/27 02:02:33
+2023/10/27 02:04:17
+2023/10/27 02:04:34
+2023/10/27 02:06:17
+2023/10/27 02:06:32
+2023/10/27 02:08:17
+2023/10/27 02:08:27
+2023/10/27 02:10:17
+2023/10/27 02:10:29
+2023/10/27 02:12:17
+2023/10/27 02:12:25
+2023/10/27 02:14:17
+2023/10/27 02:14:28
+2023/10/27 02:16:17
+2023/10/27 02:16:40
+2023/10/27 02:18:17
+2023/10/27 02:18:41
+2023/10/27 02:20:17
+2023/10/27 02:20:30
+2023/10/27 02:22:17
+2023/10/27 02:22:23
+2023/10/27 02:24:17
+2023/10/27 02:24:24
+2023/10/27 02:26:17
+2023/10/27 02:26:30
+2023/10/27 02:28:17
+2023/10/27 02:28:24
+2023/10/27 02:30:17
+2023/10/27 02:30:31
+2023/10/27 02:32:17
+2023/10/27 02:32:35
+2023/10/27 02:34:17
+2023/10/27 02:34:26
+2023/10/27 02:36:17
+2023/10/27 02:36:25
+2023/10/27 02:38:17
+2023/10/27 02:38:31
+2023/10/27 02:40:17
+2023/10/27 02:40:30
+2023/10/27 02:42:18
+2023/10/27 02:42:29
+2023/10/27 02:44:18
+2023/10/27 02:44:28
+2023/10/27 02:46:18
+2023/10/27 02:46:24
+2023/10/27 02:48:18
+2023/10/27 02:48:29
+2023/10/27 02:50:18
+2023/10/27 02:50:28
+2023/10/27 02:52:18
+2023/10/27 02:52:27
+2023/10/27 02:54:18
+2023/10/27 02:54:36
+2023/10/27 02:56:18
+2023/10/27 02:56:25
+2023/10/27 02:58:18
+2023/10/27 02:58:26
+2023/10/27 03:00:18
+2023/10/27 03:00:22
+2023/10/27 03:02:18
+2023/10/27 03:02:26
+2023/10/27 03:04:18
+2023/10/27 03:04:22
+2023/10/27 03:06:18
+2023/10/27 03:06:29
+2023/10/27 03:08:18
+2023/10/27 03:08:38
+2023/10/27 03:10:18
+2023/10/27 03:10:25
+2023/10/27 03:12:18
+2023/10/27 03:12:24
+2023/10/27 03:14:18
+2023/10/27 03:14:27
+2023/10/27 03:16:18
+2023/10/27 03:16:28
+2023/10/27 03:18:18
+2023/10/27 03:18:39
+2023/10/27 03:20:18
+2023/10/27 03:20:27
+2023/10/27 03:22:18
+2023/10/27 03:22:29
+2023/10/27 03:24:18
+2023/10/27 03:24:24
+2023/10/27 03:26:18
+2023/10/27 03:26:25
+2023/10/27 03:28:18
+2023/10/27 03:28:29
+2023/10/27 03:30:18
+2023/10/27 03:30:28
+2023/10/27 03:32:18
+2023/10/27 03:32:43
+2023/10/27 03:34:18
+2023/10/27 03:34:27
+2023/10/27 03:36:18
+2023/10/27 03:36:26
+2023/10/27 03:38:18
+2023/10/27 03:38:32
+2023/10/27 03:40:18
+2023/10/27 03:40:27
+2023/10/27 03:42:18
+2023/10/27 03:42:26
+2023/10/27 03:44:18
+2023/10/27 03:44:27
+2023/10/27 03:46:18
+2023/10/27 03:46:36
+2023/10/27 03:48:18
+2023/10/27 03:48:26
+2023/10/27 03:50:18
+2023/10/27 03:50:28
+2023/10/27 03:52:18
+2023/10/27 03:52:37
+2023/10/27 03:54:18
+2023/10/27 03:54:27
+2023/10/27 03:56:18
+2023/10/27 03:56:26
+2023/10/27 03:58:18
+2023/10/27 03:58:24
+2023/10/27 04:00:18
+2023/10/27 04:00:24
+2023/10/27 04:02:18
+2023/10/27 04:02:26
+2023/10/27 04:04:18
+2023/10/27 04:04:22
+2023/10/27 04:06:18
+2023/10/27 04:06:25
+2023/10/27 04:08:18
+2023/10/27 04:08:28
+2023/10/27 04:10:18
+2023/10/27 04:10:34
+2023/10/27 04:12:18
+2023/10/27 04:12:27
+2023/10/27 04:14:18
+2023/10/27 04:14:23
+2023/10/27 04:16:18
+2023/10/27 04:16:23
+2023/10/27 04:18:18
+2023/10/27 04:18:30
+2023/10/27 04:20:18
+2023/10/27 04:20:38
+2023/10/27 04:22:18
+2023/10/27 04:22:30
+2023/10/27 04:24:18
+2023/10/27 04:24:25
+2023/10/27 04:26:18
+2023/10/27 04:26:27
+2023/10/27 04:28:18
+2023/10/27 04:28:30
+2023/10/27 04:30:18
+2023/10/27 04:30:36
+2023/10/27 04:32:18
+2023/10/27 04:32:28
+2023/10/27 04:34:18
+2023/10/27 04:34:23
+2023/10/27 04:36:18
+2023/10/27 04:36:35
+2023/10/27 04:38:18
+2023/10/27 04:38:35
+2023/10/27 04:40:18
+2023/10/27 04:40:32
+2023/10/27 04:42:18
+2023/10/27 04:42:26
+2023/10/27 04:44:18
+2023/10/27 04:44:28
+2023/10/27 04:46:18
+2023/10/27 04:46:25
+2023/10/27 04:48:18
+2023/10/27 04:48:24
+2023/10/27 04:50:18
+2023/10/27 04:50:24
+2023/10/27 04:52:19
+2023/10/27 04:52:22
+2023/10/27 04:54:19
+2023/10/27 04:54:36
+2023/10/27 04:56:19
+2023/10/27 04:56:31
+2023/10/27 04:58:19
+2023/10/27 04:58:32
+2023/10/27 05:00:19
+2023/10/27 05:00:26
+2023/10/27 05:02:19
+2023/10/27 05:02:24
+2023/10/27 05:04:19
+2023/10/27 05:04:40
+2023/10/27 05:06:19
+2023/10/27 05:06:32
+2023/10/27 05:08:19
+2023/10/27 05:08:28
+2023/10/27 05:10:19
+2023/10/27 05:10:26
+2023/10/27 05:12:19
+2023/10/27 05:12:27
+2023/10/27 05:14:19
+2023/10/27 05:14:29
+2023/10/27 05:16:19
+2023/10/27 05:16:31
+2023/10/27 05:18:19
+2023/10/27 05:18:26
+2023/10/27 05:20:19
+2023/10/27 05:20:22
+2023/10/27 05:22:19
+2023/10/27 05:22:23
+2023/10/27 05:24:19
+2023/10/27 05:24:25
+2023/10/27 05:26:19
+2023/10/27 05:26:33
+2023/10/27 05:28:19
+2023/10/27 05:28:26
+2023/10/27 05:30:19
+2023/10/27 05:30:36
+2023/10/27 05:32:19
+2023/10/27 05:32:30
+2023/10/27 05:34:19
+2023/10/27 05:34:25
+2023/10/27 05:36:19
+2023/10/27 05:36:29
+2023/10/27 05:38:19
+2023/10/27 05:38:41
+2023/10/27 05:40:19
+2023/10/27 05:40:33
+2023/10/27 05:42:19
+2023/10/27 05:42:25
+2023/10/27 05:44:19
+2023/10/27 05:44:51
+2023/10/27 05:46:19
+2023/10/27 05:46:37
+2023/10/27 05:48:19
+2023/10/27 05:48:28
+2023/10/27 05:50:19
+2023/10/27 05:50:30
+2023/10/27 05:52:19
+2023/10/27 05:52:38
+2023/10/27 05:54:19
+2023/10/27 05:54:28
+2023/10/27 05:56:19
+2023/10/27 05:56:32
+2023/10/27 05:58:19
+2023/10/27 05:58:27
+2023/10/27 06:00:19
+2023/10/27 06:00:33
+2023/10/27 06:02:19
+2023/10/27 06:02:22
+2023/10/27 06:04:19
+2023/10/27 06:04:26
+2023/10/27 06:06:19
+2023/10/27 06:06:25
+2023/10/27 06:08:19
+2023/10/27 06:08:28
+2023/10/27 06:10:19
+2023/10/27 06:10:38
+2023/10/27 06:12:19
+2023/10/27 06:12:29
+2023/10/27 06:14:19
+2023/10/27 06:14:27
+2023/10/27 06:16:19
+2023/10/27 06:16:27
+2023/10/27 06:18:19
+2023/10/27 06:18:24
+2023/10/27 06:20:19
+2023/10/27 06:20:24
+2023/10/27 06:22:19
+2023/10/27 06:22:27
+2023/10/27 06:24:19
+2023/10/27 06:24:30
+2023/10/27 06:26:19
+2023/10/27 06:26:27
+2023/10/27 06:28:19
+2023/10/27 06:28:24
+2023/10/27 06:30:19
+2023/10/27 06:30:29
+2023/10/27 06:32:19
+2023/10/27 06:32:27
+2023/10/27 06:34:19
+2023/10/27 06:34:29
+2023/10/27 06:36:19
+2023/10/27 06:36:25
+2023/10/27 06:38:19
+2023/10/27 06:38:29
+2023/10/27 06:40:19
+2023/10/27 06:40:46
+2023/10/27 06:42:19
+2023/10/27 06:42:34
+2023/10/27 06:44:19
+2023/10/27 06:44:22
+2023/10/27 06:46:19
+2023/10/27 06:46:42
+2023/10/27 06:48:19
+2023/10/27 06:48:24
+2023/10/27 06:50:19
+2023/10/27 06:50:29
+2023/10/27 06:52:19
+2023/10/27 06:52:25
+2023/10/27 06:54:19
+2023/10/27 06:54:40
+2023/10/27 06:56:19
+2023/10/27 06:56:23
+2023/10/27 06:58:19
+2023/10/27 06:58:40
+2023/10/27 07:00:19
+2023/10/27 07:00:33
+2023/10/27 07:02:19
+2023/10/27 07:02:25
+2023/10/27 07:04:20
+2023/10/27 07:04:28
+2023/10/27 07:06:20
+2023/10/27 07:06:31
+2023/10/27 07:08:20
+2023/10/27 07:08:27
+2023/10/27 07:10:20
+2023/10/27 07:10:26
+2023/10/27 07:12:20
+2023/10/27 07:12:27
+2023/10/27 07:14:20
+2023/10/27 07:14:24
+2023/10/27 07:16:20
+2023/10/27 07:16:31
+2023/10/27 07:18:20
+2023/10/27 07:18:32
+2023/10/27 07:20:20
+2023/10/27 07:20:28
+2023/10/27 07:22:20
+2023/10/27 07:22:26
+2023/10/27 07:24:20
+2023/10/27 07:24:24
+2023/10/27 07:26:20
+2023/10/27 07:26:27
+2023/10/27 07:28:20
+2023/10/27 07:28:40
+2023/10/27 07:30:20
+2023/10/27 07:30:29
+2023/10/27 07:32:20
+2023/10/27 07:32:31
+2023/10/27 07:34:20
+2023/10/27 07:34:39
+2023/10/27 07:36:20
+2023/10/27 07:36:29
+2023/10/27 07:38:20
+2023/10/27 07:38:26
+2023/10/27 07:40:20
+2023/10/27 07:40:28
+2023/10/27 07:42:20
+2023/10/27 07:42:45
+2023/10/27 07:44:20
+2023/10/27 07:44:28
+2023/10/27 07:46:20
+2023/10/27 07:46:30
+2023/10/27 07:48:20
+2023/10/27 07:48:30
+2023/10/27 07:50:20
+2023/10/27 07:50:39
+2023/10/27 07:52:20
+2023/10/27 07:52:27
+2023/10/27 07:54:20
+2023/10/27 07:54:31
+2023/10/27 07:56:20
+2023/10/27 07:56:31
+2023/10/27 07:58:20
+2023/10/27 07:58:28
+2023/10/27 08:00:20
+2023/10/27 08:00:33
+2023/10/27 08:02:20
+2023/10/27 08:02:32
+2023/10/27 08:04:20
+2023/10/27 08:04:30
+2023/10/27 08:06:20
+2023/10/27 08:06:29
+2023/10/27 08:08:20
+2023/10/27 08:08:41
+2023/10/27 08:10:20
+2023/10/27 08:10:31
+2023/10/27 08:12:20
+2023/10/27 08:12:28
+2023/10/27 08:14:20
+2023/10/27 08:14:29
+2023/10/27 08:16:20
+2023/10/27 08:16:30
+2023/10/27 08:18:20
+2023/10/27 08:18:29
+2023/10/27 08:20:20
+2023/10/27 08:20:28
+2023/10/27 08:22:20
+2023/10/27 08:22:40
+2023/10/27 08:24:20
+2023/10/27 08:24:28
+2023/10/27 08:26:20
+2023/10/27 08:26:30
+2023/10/27 08:28:20
+2023/10/27 08:28:28
+2023/10/27 08:30:20
+2023/10/27 08:30:49
+2023/10/27 08:32:20
+2023/10/27 08:32:35
+2023/10/27 08:34:20
+2023/10/27 08:34:46
+2023/10/27 08:36:20
+2023/10/27 08:36:42
+2023/10/27 08:38:20
+2023/10/27 08:38:38
+2023/10/27 08:40:20
+2023/10/27 08:40:56
+2023/10/27 08:42:20
+2023/10/27 08:42:35
+2023/10/27 08:44:20
+2023/10/27 08:44:38
+2023/10/27 08:46:20
+2023/10/27 08:47:00
+2023/10/27 08:48:20
+2023/10/27 08:48:32
+2023/10/27 08:50:20
+2023/10/27 08:50:40
+2023/10/27 08:52:20
+2023/10/27 08:52:57
+2023/10/27 08:54:20
+2023/10/27 08:54:42
+2023/10/27 08:56:20
+2023/10/27 08:56:38
+2023/10/27 08:58:20
+2023/10/27 08:58:38
+2023/10/27 09:00:20
+2023/10/27 09:01:03
+2023/10/27 09:02:20
+2023/10/27 09:02:54
+2023/10/27 09:04:20
+2023/10/27 09:04:41
+2023/10/27 09:06:20
+2023/10/27 09:06:49
+2023/10/27 09:08:20
+2023/10/27 09:08:42
+2023/10/27 09:10:20
+2023/10/27 09:10:41
+2023/10/27 09:12:20
+2023/10/27 09:13:02
+2023/10/27 09:14:21
+2023/10/27 09:14:42
+2023/10/27 09:16:21
+2023/10/27 09:16:30
+2023/10/27 09:18:21
+2023/10/27 09:18:37
+2023/10/27 09:20:21
+2023/10/27 09:20:37
+2023/10/27 09:22:21
+2023/10/27 09:22:31
+2023/10/27 09:24:21
+2023/10/27 09:24:45
+2023/10/27 09:26:21
+2023/10/27 09:26:30
+2023/10/27 09:28:21
+2023/10/27 09:28:30
+2023/10/27 09:30:21
+2023/10/27 09:31:07
+2023/10/27 09:32:21
+2023/10/27 09:33:04
+2023/10/27 09:34:21
+2023/10/27 09:34:33
+2023/10/27 09:36:21
+2023/10/27 09:36:34
+2023/10/27 09:38:21
+2023/10/27 09:39:03
+2023/10/27 09:40:21
+2023/10/27 09:41:04
+2023/10/27 09:42:21
+2023/10/27 09:42:50
+2023/10/27 09:44:21
+2023/10/27 09:45:12
+2023/10/27 09:46:21
+2023/10/27 09:47:02
+2023/10/27 09:48:21
+2023/10/27 09:49:01
+2023/10/27 09:50:21
+2023/10/27 09:50:52
+2023/10/27 09:52:21
+2023/10/27 09:53:29
+2023/10/27 09:54:21
+2023/10/27 09:54:59
+2023/10/27 09:56:21
+2023/10/27 09:57:10
+2023/10/27 09:58:21
+2023/10/27 09:59:54
+2023/10/27 10:00:21
+2023/10/27 10:01:33
+2023/10/27 10:02:21
+2023/10/27 10:03:56
+2023/10/27 10:04:21
+2023/10/27 10:05:32
+2023/10/27 10:06:21
+2023/10/27 10:07:19
+2023/10/27 10:08:21
+2023/10/27 10:09:11
+2023/10/27 10:10:21
+2023/10/27 10:11:26
+2023/10/27 10:12:22
+2023/10/27 10:13:46
+2023/10/27 10:14:22
+2023/10/27 10:16:06
+2023/10/27 10:16:22
+2023/10/27 10:17:22
+2023/10/27 10:18:22
+2023/10/27 10:19:41
+2023/10/27 10:20:22
+2023/10/27 10:21:02
+2023/10/27 10:22:22
+2023/10/27 10:22:47
+2023/10/27 10:24:22
+2023/10/27 10:24:39
+2023/10/27 10:26:22
+2023/10/27 10:27:33
+2023/10/27 10:28:22
+2023/10/27 10:29:32
+2023/10/27 10:30:22
+2023/10/27 10:31:11
+2023/10/27 10:32:22
+2023/10/27 10:33:11
+2023/10/27 10:34:22
+2023/10/27 10:35:17
+2023/10/27 10:36:22
+2023/10/27 10:37:23
+2023/10/27 10:38:22
+2023/10/27 10:39:02
+2023/10/27 10:40:22
+2023/10/27 10:41:17
+2023/10/27 10:42:22
+2023/10/27 10:43:19
+2023/10/27 10:44:22
+2023/10/27 10:45:19
+2023/10/27 10:46:22
+2023/10/27 10:47:07
+2023/10/27 10:48:22
+2023/10/27 10:49:30
+2023/10/27 10:50:22
+2023/10/27 10:51:31
+2023/10/27 10:52:22
+2023/10/27 10:53:19
+2023/10/27 10:54:22
+2023/10/27 10:55:15
+2023/10/27 10:56:22
+2023/10/27 10:57:03
+2023/10/27 10:58:22
+2023/10/27 10:59:12
+2023/10/27 11:00:22
+2023/10/27 11:01:06
+2023/10/27 11:02:22
+2023/10/27 11:03:22
+2023/10/27 11:04:22
+2023/10/27 11:05:33
+2023/10/27 11:06:22
+2023/10/27 11:07:25
+2023/10/27 11:08:22
+2023/10/27 11:09:08
+2023/10/27 11:10:22
+2023/10/27 11:11:17
+2023/10/27 11:12:22
+2023/10/27 11:13:01
+2023/10/27 11:14:22
+2023/10/27 11:15:15
+2023/10/27 11:16:22
+2023/10/27 11:17:06
+2023/10/27 11:18:22
+2023/10/27 11:19:25
+2023/10/27 11:20:22
+2023/10/27 11:21:36
+2023/10/27 11:22:22
+2023/10/27 11:23:34
+2023/10/27 11:24:22
+2023/10/27 11:25:43
+2023/10/27 11:26:23
+2023/10/27 11:27:55
+2023/10/27 11:28:23
+2023/10/27 11:30:12
+2023/10/27 11:30:23
+2023/10/27 11:31:51
+2023/10/27 11:32:23
+2023/10/27 11:33:51
+2023/10/27 11:34:23
+2023/10/27 11:35:24
+2023/10/27 11:36:23
+2023/10/27 11:37:31
+2023/10/27 11:38:23
+2023/10/27 11:39:17
+2023/10/27 11:40:23
+2023/10/27 11:41:40
+2023/10/27 11:42:23
+2023/10/27 11:43:29
+2023/10/27 11:44:23
+2023/10/27 11:46:11
+2023/10/27 11:46:23
+2023/10/27 11:47:43
+2023/10/27 11:48:23
+2023/10/27 11:49:13
+2023/10/27 11:50:23
+2023/10/27 11:51:35
+2023/10/27 11:52:23
+2023/10/27 11:53:32
+2023/10/27 11:54:23
+2023/10/27 11:55:05
+2023/10/27 11:56:23
+2023/10/27 11:57:05
+2023/10/27 11:58:23
+2023/10/27 11:59:45
+2023/10/27 12:00:23
+2023/10/27 12:01:02
+2023/10/27 12:02:23
+2023/10/27 12:03:22
+2023/10/27 12:04:23
+2023/10/27 12:05:43
+2023/10/27 12:06:23
+2023/10/27 12:07:02
+2023/10/27 12:08:23
+2023/10/27 12:09:10
+2023/10/27 12:10:23
+2023/10/27 12:11:08
+2023/10/27 12:12:23
+2023/10/27 12:13:14
+2023/10/27 12:14:23
+2023/10/27 12:15:05
+2023/10/27 12:16:23
+2023/10/27 12:17:36
+2023/10/27 12:18:23
+2023/10/27 12:19:03
+2023/10/27 12:20:23
+2023/10/27 12:21:02
+2023/10/27 12:22:24
+2023/10/27 12:23:24
+2023/10/27 12:24:24
+2023/10/27 12:24:56
+2023/10/27 12:26:24
+2023/10/27 12:26:56
+2023/10/27 12:28:24
+2023/10/27 12:29:28
+2023/10/27 12:30:24
+2023/10/27 12:31:25
+2023/10/27 12:32:24
+2023/10/27 12:32:53
+2023/10/27 12:34:24
+2023/10/27 12:35:10
+2023/10/27 12:36:24
+2023/10/27 12:36:51
+2023/10/27 12:38:24
+2023/10/27 12:38:53
+2023/10/27 12:40:24
+2023/10/27 12:41:15
+2023/10/27 12:42:24
+2023/10/27 12:43:00
+2023/10/27 12:44:24
+2023/10/27 12:44:55
+2023/10/27 12:46:24
+2023/10/27 12:46:59
+2023/10/27 12:48:24
+2023/10/27 12:48:54
+2023/10/27 12:50:24
+2023/10/27 12:51:14
+2023/10/27 12:52:24
+2023/10/27 12:52:40
+2023/10/27 12:54:24
+2023/10/27 12:54:53
+2023/10/27 12:56:24
+2023/10/27 12:56:41
+2023/10/27 12:58:24
+2023/10/27 12:58:53
+2023/10/27 13:00:24
+2023/10/27 13:00:50
+2023/10/27 13:02:24
+2023/10/27 13:02:53
+2023/10/27 13:04:24
+2023/10/27 13:05:00
+2023/10/27 13:06:24
+2023/10/27 13:06:55
+2023/10/27 13:08:24
+2023/10/27 13:08:43
+2023/10/27 13:10:24
+2023/10/27 13:10:43
+2023/10/27 13:12:24
+2023/10/27 13:12:55
+2023/10/27 13:14:24
+2023/10/27 13:14:43
+2023/10/27 13:16:24
+2023/10/27 13:16:55
+2023/10/27 13:18:24
+2023/10/27 13:18:45
+2023/10/27 13:20:24
+2023/10/27 13:20:40
+2023/10/27 13:22:24
+2023/10/27 13:22:41
+2023/10/27 13:24:24
+2023/10/27 13:24:52
+2023/10/27 13:26:24
+2023/10/27 13:26:52
+2023/10/27 13:28:24
+2023/10/27 13:28:46
+2023/10/27 13:30:24
+2023/10/27 13:30:53
+2023/10/27 13:32:24
+2023/10/27 13:32:49
+2023/10/27 13:34:24
+2023/10/27 13:34:48
+2023/10/27 13:36:24
+2023/10/27 13:36:41
+2023/10/27 13:38:24
+2023/10/27 13:38:56
+2023/10/27 13:40:24
+2023/10/27 13:41:00
+2023/10/27 13:42:24
+2023/10/27 13:43:05
+2023/10/27 13:44:24
+2023/10/27 13:44:47
+2023/10/27 13:46:24
+2023/10/27 13:47:07
+2023/10/27 13:48:24
+2023/10/27 13:49:02
+2023/10/27 13:50:24
+2023/10/27 13:50:59
+2023/10/27 13:52:25
+2023/10/27 13:53:19
+2023/10/27 13:54:25
+2023/10/27 13:55:07
+2023/10/27 13:56:25
+2023/10/27 13:57:02
+2023/10/27 13:58:25
+2023/10/27 13:58:48
+2023/10/27 14:00:25
+2023/10/27 14:00:58
+2023/10/27 14:02:25
+2023/10/27 14:02:50
+2023/10/27 14:04:25
+2023/10/27 14:04:59
+2023/10/27 14:06:25
+2023/10/27 14:06:53
+2023/10/27 14:08:25
+2023/10/27 14:08:54
+2023/10/27 14:10:25
+2023/10/27 14:11:09
+2023/10/27 14:12:25
+2023/10/27 14:12:53
+2023/10/27 14:14:25
+2023/10/27 14:15:04
+2023/10/27 14:16:25
+2023/10/27 14:16:54
+2023/10/27 14:18:25
+2023/10/27 14:19:07
+2023/10/27 14:20:25
+2023/10/27 14:21:03
+2023/10/27 14:22:25
+2023/10/27 14:22:48
+2023/10/27 14:24:25
+2023/10/27 14:25:12
+2023/10/27 14:26:25
+2023/10/27 14:27:02
+2023/10/27 14:28:25
+2023/10/27 14:29:13
+2023/10/27 14:30:25
+2023/10/27 14:31:40
+2023/10/27 14:32:25
+2023/10/27 14:32:53
+2023/10/27 14:34:25
+2023/10/27 14:34:54
+2023/10/27 14:36:25
+2023/10/27 14:37:07
+2023/10/27 14:38:25
+2023/10/27 14:39:25
+2023/10/27 14:40:25
+2023/10/27 14:41:03
+2023/10/27 14:42:25
+2023/10/27 14:43:05
+2023/10/27 14:44:25
+2023/10/27 14:45:25
+2023/10/27 14:46:25
+2023/10/27 14:46:51
+2023/10/27 14:48:25
+2023/10/27 14:49:28
+2023/10/27 14:50:25
+2023/10/27 14:51:01
+2023/10/27 14:52:25
+2023/10/27 14:53:29
+2023/10/27 14:54:25
+2023/10/27 14:54:55
+2023/10/27 14:56:25
+2023/10/27 14:57:34
+2023/10/27 14:58:25
+2023/10/27 14:59:01
+2023/10/27 15:00:25
+2023/10/27 15:01:21
+2023/10/27 15:02:25
+2023/10/27 15:03:31
+2023/10/27 15:04:25
+2023/10/27 15:05:16
+2023/10/27 15:06:26
+2023/10/27 15:07:06
+2023/10/27 15:08:26
+2023/10/27 15:09:13
+2023/10/27 15:10:26
+2023/10/27 15:11:16
+2023/10/27 15:12:26
+2023/10/27 15:13:27
+2023/10/27 15:14:26
+2023/10/27 15:15:28
+2023/10/27 15:16:26
+2023/10/27 15:17:12
+2023/10/27 15:18:26
+2023/10/27 15:19:06
+2023/10/27 15:20:26
+2023/10/27 15:20:48
+2023/10/27 15:22:26
+2023/10/27 15:23:21
+2023/10/27 15:24:26
+2023/10/27 15:24:57
+2023/10/27 15:26:26
+2023/10/27 15:27:33
+2023/10/27 15:28:26
+2023/10/27 15:29:19
+2023/10/27 15:30:26
+2023/10/27 15:32:17
+2023/10/27 15:32:26
+2023/10/27 15:33:27
+2023/10/27 15:34:26
+2023/10/27 15:35:16
+2023/10/27 15:36:26
+2023/10/27 15:37:06
+2023/10/27 15:38:26
+2023/10/27 15:39:38
+2023/10/27 15:40:26
+2023/10/27 15:41:53
+2023/10/27 15:42:26
+2023/10/27 15:43:22
+2023/10/27 15:44:26
+2023/10/27 15:45:38
+2023/10/27 15:46:26
+2023/10/27 15:47:32
+2023/10/27 15:48:27
+2023/10/27 15:50:13
+2023/10/27 15:50:27
+2023/10/27 15:51:02
+2023/10/27 15:52:27
+2023/10/27 15:52:49
+2023/10/27 15:54:27
+2023/10/27 15:54:49
+2023/10/27 15:56:27
+2023/10/27 15:56:43
+2023/10/27 15:58:27
+2023/10/27 15:58:43
+2023/10/27 16:00:27
+2023/10/27 16:00:51
+2023/10/27 16:02:27
+2023/10/27 16:02:42
+2023/10/27 16:04:27
+2023/10/27 16:04:39
+2023/10/27 16:06:27
+2023/10/27 16:06:44
+2023/10/27 16:08:27
+2023/10/27 16:08:51
+2023/10/27 16:10:27
+2023/10/27 16:11:42
+2023/10/27 16:12:27
+2023/10/27 16:15:04
+2023/10/27 16:15:27
+2023/10/27 16:16:42
+2023/10/27 16:16:57
+2023/10/27 16:18:09
+2023/10/27 16:18:28
+2023/10/27 16:19:37
+2023/10/27 16:20:28
+2023/10/27 16:22:22
+2023/10/27 16:22:28
+2023/10/27 16:23:54
+2023/10/27 16:24:28
+2023/10/27 16:26:49
+2023/10/27 16:26:58
+2023/10/27 16:27:58
+2023/10/27 16:28:28
+2023/10/27 16:29:32
+2023/10/27 16:30:28
+2023/10/27 16:31:29
+2023/10/27 16:32:28
+2023/10/27 16:33:21
+2023/10/27 16:34:28
+2023/10/27 16:35:11
+2023/10/27 16:36:28
+2023/10/27 16:39:05
+2023/10/27 16:39:28
+2023/10/27 16:40:59
+2023/10/27 16:41:28
+2023/10/27 16:43:14
+2023/10/27 16:43:28
+2023/10/27 16:45:14
+2023/10/27 16:45:28
+2023/10/27 16:46:55
+2023/10/27 16:46:58
+2023/10/27 16:48:57
+2023/10/27 16:48:58
+2023/10/27 16:50:34
+2023/10/27 16:50:58
+2023/10/27 16:51:52
+2023/10/27 16:52:29
+2023/10/27 16:54:07
+2023/10/27 16:54:29
+2023/10/27 16:56:00
+2023/10/27 16:56:29
+2023/10/27 16:58:18
+2023/10/27 16:58:29
+2023/10/27 17:00:15
+2023/10/27 17:00:29
+2023/10/27 17:02:07
+2023/10/27 17:02:29
+2023/10/27 17:03:34
+2023/10/27 17:04:29
+2023/10/27 17:05:46
+2023/10/27 17:06:29
+2023/10/27 17:08:10
+2023/10/27 17:08:29
+2023/10/27 17:09:43
+2023/10/27 17:10:29
+2023/10/27 17:11:37
+2023/10/27 17:12:29
+2023/10/27 17:13:22
+2023/10/27 17:14:29
+2023/10/27 17:16:15
+2023/10/27 17:16:29
+2023/10/27 17:18:00
+2023/10/27 17:18:30
+2023/10/27 17:19:29
+2023/10/27 17:20:30
+2023/10/27 17:22:09
+2023/10/27 17:22:30
+2023/10/27 17:23:52
+2023/10/27 17:24:30
+2023/10/27 17:25:20
+2023/10/27 17:26:30
+2023/10/27 17:28:01
+2023/10/27 17:28:30
+2023/10/27 17:29:31
+2023/10/27 17:30:30
+2023/10/27 17:31:45
+2023/10/27 17:32:30
+2023/10/27 17:34:16
+2023/10/27 17:34:30
+2023/10/27 17:35:36
+2023/10/27 17:36:30
+2023/10/27 17:38:04
+2023/10/27 17:38:30
+2023/10/27 17:40:21
+2023/10/27 17:40:30
+2023/10/27 17:42:16
+2023/10/27 17:42:30
+2023/10/27 17:44:27
+2023/10/27 17:44:30
+2023/10/27 17:45:52
+2023/10/27 17:46:30
+2023/10/27 17:48:00
+2023/10/27 17:48:30
+2023/10/27 17:50:10
+2023/10/27 17:50:30
+2023/10/27 17:52:57
+2023/10/27 17:53:00
+2023/10/27 17:54:08
+2023/10/27 17:54:31
+2023/10/27 17:55:28
+2023/10/27 17:56:31
+2023/10/27 17:57:38
+2023/10/27 17:58:31
+2023/10/27 17:59:38
+2023/10/27 18:00:31
+2023/10/27 18:01:54
+2023/10/27 18:02:31
+2023/10/27 18:04:06
+2023/10/27 18:04:31
+2023/10/27 18:05:48
+2023/10/27 18:06:31
+2023/10/27 18:08:00
+2023/10/27 18:08:31
+2023/10/27 18:10:00
+2023/10/27 18:10:31
+2023/10/27 18:11:48
+2023/10/27 18:12:31
+2023/10/27 18:13:50
+2023/10/27 18:14:31
+2023/10/27 18:16:23
+2023/10/27 18:16:31
+2023/10/27 18:18:02
+2023/10/27 18:18:31
+2023/10/27 18:19:56
+2023/10/27 18:20:31
+2023/10/27 18:21:50
+2023/10/27 18:22:31
+2023/10/27 18:25:02
+2023/10/27 18:25:32
+2023/10/27 18:27:16
+2023/10/27 18:27:32
+2023/10/27 18:28:35
+2023/10/27 18:29:02
+2023/10/27 18:31:00
+2023/10/27 18:31:02
+2023/10/27 18:33:10
+2023/10/27 18:33:32
+2023/10/27 18:35:52
+2023/10/27 18:36:02
+2023/10/27 18:37:23
+2023/10/27 18:37:32
+2023/10/27 18:39:56
+2023/10/27 18:40:02
+2023/10/27 18:41:14
+2023/10/27 18:41:32
+2023/10/27 18:44:08
+2023/10/27 18:44:32
+2023/10/27 18:45:32
+2023/10/27 18:46:02
+2023/10/27 18:48:14
+2023/10/27 18:48:32
+2023/10/27 18:49:27
+2023/10/27 18:49:32
+2023/10/27 18:50:13
+2023/10/27 18:50:33
+2023/10/27 18:52:14
+2023/10/27 18:52:33
+2023/10/27 18:53:11
+2023/10/27 18:54:33
+2023/10/27 18:55:42
+2023/10/27 18:56:33
+2023/10/27 18:57:06
+2023/10/27 18:58:33
+2023/10/27 18:59:46
+2023/10/27 19:00:33
+2023/10/27 19:01:20
+2023/10/27 19:02:33
+2023/10/27 19:03:24
+2023/10/27 19:04:33
+2023/10/27 19:05:02
+2023/10/27 19:06:33
+2023/10/27 19:07:57
+2023/10/27 19:08:33
+2023/10/27 19:09:06
+2023/10/27 19:10:33
+2023/10/27 19:10:48
+2023/10/27 19:12:33
+2023/10/27 19:13:57
+2023/10/27 19:14:33
+2023/10/27 19:14:51
+2023/10/27 19:16:33
+2023/10/27 19:17:38
+2023/10/27 19:18:33
+2023/10/27 19:19:22
+2023/10/27 19:20:33
+2023/10/27 19:21:10
+2023/10/27 19:22:33
+2023/10/27 19:23:34
+2023/10/27 19:24:33
+2023/10/27 19:25:17
+2023/10/27 19:26:33
+2023/10/27 19:27:30
+2023/10/27 19:28:33
+2023/10/27 19:28:54
+2023/10/27 19:30:33
+2023/10/27 19:31:16
+2023/10/27 19:32:33
+2023/10/27 19:33:29
+2023/10/27 19:34:33
+2023/10/27 19:34:56
+2023/10/27 19:36:33
+2023/10/27 19:37:26
+2023/10/27 19:38:34
+2023/10/27 19:39:01
+2023/10/27 19:40:34
+2023/10/27 19:41:14
+2023/10/27 19:42:34
+2023/10/27 19:43:12
+2023/10/27 19:44:34
+2023/10/27 19:45:09
+2023/10/27 19:46:34
+2023/10/27 19:47:26
+2023/10/27 19:48:34
+2023/10/27 19:48:43
+2023/10/27 19:50:34
+2023/10/27 19:51:11
+2023/10/27 19:52:34
+2023/10/27 19:53:11
+2023/10/27 19:54:34
+2023/10/27 19:54:55
+2023/10/27 19:56:34
+2023/10/27 19:57:08
+2023/10/27 19:58:34
+2023/10/27 19:59:01
+2023/10/27 20:00:34
+2023/10/27 20:01:08
+2023/10/27 20:02:34
+2023/10/27 20:02:58
+2023/10/27 20:04:34
+2023/10/27 20:05:05
+2023/10/27 20:06:34
+2023/10/27 20:07:02
+2023/10/27 20:08:34
+2023/10/27 20:08:48
+2023/10/27 20:10:34
+2023/10/27 20:11:32
+2023/10/27 20:12:34
+2023/10/27 20:13:14
+2023/10/27 20:14:34
+2023/10/27 20:15:00
+2023/10/27 20:16:35
+2023/10/27 20:16:57
+2023/10/27 20:18:35
+2023/10/27 20:18:56
+2023/10/27 20:20:35
+2023/10/27 20:21:09
+2023/10/27 20:22:35
+2023/10/27 20:23:02
+2023/10/27 20:24:35
+2023/10/27 20:24:47
+2023/10/27 20:26:35
+2023/10/27 20:26:57
+2023/10/27 20:28:35
+2023/10/27 20:28:52
+2023/10/27 20:30:35
+2023/10/27 20:31:01
+2023/10/27 20:32:35
+2023/10/27 20:33:16
+2023/10/27 20:34:35
+2023/10/27 20:34:48
+2023/10/27 20:36:35
+2023/10/27 20:37:04
+2023/10/27 20:38:35
+2023/10/27 20:38:56
+2023/10/27 20:40:35
+2023/10/27 20:41:08
+2023/10/27 20:42:35
+2023/10/27 20:42:59
+2023/10/27 20:44:35
+2023/10/27 20:44:48
+2023/10/27 20:46:35
+2023/10/27 20:47:07
+2023/10/27 20:48:35
+2023/10/27 20:49:05
+2023/10/27 20:50:35
+2023/10/27 20:51:02
+2023/10/27 20:52:35
+2023/10/27 20:53:00
+2023/10/27 20:54:35
+2023/10/27 20:54:59
+2023/10/27 20:56:35
+2023/10/27 20:57:04
+2023/10/27 20:58:35
+2023/10/27 20:58:52
+2023/10/27 21:00:35
+2023/10/27 21:01:07
+2023/10/27 21:02:05
+2023/10/27 21:02:47
+2023/10/27 21:04:05
+2023/10/27 21:04:26
+2023/10/27 21:06:05
+2023/10/27 21:06:47
+2023/10/27 21:08:05
+2023/10/27 21:08:35
+2023/10/27 21:10:06
+2023/10/27 21:10:26
+2023/10/27 21:12:36
+2023/10/27 21:13:12
+2023/10/27 21:14:06
+2023/10/27 21:14:28
+2023/10/27 21:16:06
+2023/10/27 21:16:19
+2023/10/27 21:18:36
+2023/10/27 21:19:17
+2023/10/27 21:20:06
+2023/10/27 21:20:27
+2023/10/27 21:22:06
+2023/10/27 21:22:22
+2023/10/27 21:24:06
+2023/10/27 21:25:04
+2023/10/27 21:26:06
+2023/10/27 21:26:15
+2023/10/27 21:28:06
+2023/10/27 21:28:29
+2023/10/27 21:30:06
+2023/10/27 21:30:25
+2023/10/27 21:32:06
+2023/10/27 21:32:29
+2023/10/27 21:34:06
+2023/10/27 21:34:24
+2023/10/27 21:36:06
+2023/10/27 21:36:22
+2023/10/27 21:38:06
+2023/10/27 21:38:25
+2023/10/27 21:40:06
+2023/10/27 21:40:32
+2023/10/27 21:42:06
+2023/10/27 21:42:31
+2023/10/27 21:44:06
+2023/10/27 21:44:12
+2023/10/27 21:46:06
+2023/10/27 21:46:33
+2023/10/27 21:48:06
+2023/10/27 21:48:26
+2023/10/27 21:50:06
+2023/10/27 21:50:33
+2023/10/27 21:52:06
+2023/10/27 21:52:36
+2023/10/27 21:54:06
+2023/10/27 21:54:21
+2023/10/27 21:56:06
+2023/10/27 21:56:28
+2023/10/27 21:58:07
+2023/10/27 21:58:11
+2023/10/27 22:00:07
+2023/10/27 22:00:34
+2023/10/27 22:02:07
+2023/10/27 22:02:39
+2023/10/27 22:04:07
+2023/10/27 22:04:22
+2023/10/27 22:06:07
+2023/10/27 22:06:30
+2023/10/27 22:08:07
+2023/10/27 22:08:17
+2023/10/27 22:10:07
+2023/10/27 22:10:33
+2023/10/27 22:12:07
+2023/10/27 22:12:15
+2023/10/27 22:14:07
+2023/10/27 22:14:27
+2023/10/27 22:16:07
+2023/10/27 22:16:32
+2023/10/27 22:18:07
+2023/10/27 22:18:28
+2023/10/27 22:20:07
+2023/10/27 22:20:21
+2023/10/27 22:22:07
+2023/10/27 22:22:28
+2023/10/27 22:24:07
+2023/10/27 22:24:24
+2023/10/27 22:26:07
+2023/10/27 22:26:27
+2023/10/27 22:28:07
+2023/10/27 22:28:28
+2023/10/27 22:30:07
+2023/10/27 22:30:38
+2023/10/27 22:32:07
+2023/10/27 22:32:25
+2023/10/27 22:34:07
+2023/10/27 22:34:19
+2023/10/27 22:36:07
+2023/10/27 22:36:19
+2023/10/27 22:38:08
+2023/10/27 22:38:32
+2023/10/27 22:40:08
+2023/10/27 22:40:21
+2023/10/27 22:42:08
+2023/10/27 22:42:29
+2023/10/27 22:44:08
+2023/10/27 22:44:18
+2023/10/27 22:46:08
+2023/10/27 22:46:27
+2023/10/27 22:48:08
+2023/10/27 22:48:26
+2023/10/27 22:50:08
+2023/10/27 22:50:16
+2023/10/27 22:52:08
+2023/10/27 22:52:34
+2023/10/27 22:54:08
+2023/10/27 22:54:21
+2023/10/27 22:56:08
+2023/10/27 22:56:23
+2023/10/27 22:58:08
+2023/10/27 22:58:34
+2023/10/27 23:00:08
+2023/10/27 23:00:15
+2023/10/27 23:02:08
+2023/10/27 23:02:25
+2023/10/27 23:04:08
+2023/10/27 23:04:27
+2023/10/27 23:06:08
+2023/10/27 23:06:16
+2023/10/27 23:08:08
+2023/10/27 23:08:27
+2023/10/27 23:10:08
+2023/10/27 23:10:18
+2023/10/27 23:12:08
+2023/10/27 23:12:31
+2023/10/27 23:14:08
+2023/10/27 23:14:21
+2023/10/27 23:16:09
+2023/10/27 23:16:24
+2023/10/27 23:18:09
+2023/10/27 23:18:50
+2023/10/27 23:20:09
+2023/10/27 23:20:18
+2023/10/27 23:22:09
+2023/10/27 23:22:23
+2023/10/27 23:24:09
+2023/10/27 23:24:33
+2023/10/27 23:26:09
+2023/10/27 23:26:21
+2023/10/27 23:28:09
+2023/10/27 23:28:32
+2023/10/27 23:30:09
+2023/10/27 23:30:21
+2023/10/27 23:32:09
+2023/10/27 23:32:14
+2023/10/27 23:34:39
+2023/10/27 23:35:18
+2023/10/27 23:36:09
+2023/10/27 23:36:16
+2023/10/27 23:38:09
+2023/10/27 23:38:32
+2023/10/27 23:40:09
+2023/10/27 23:40:21
+2023/10/27 23:42:09
+2023/10/27 23:42:30
+2023/10/27 23:44:09
+2023/10/27 23:44:31
+2023/10/27 23:46:09
+2023/10/27 23:46:16
+2023/10/27 23:48:09
+2023/10/27 23:48:20
+2023/10/27 23:50:10
+2023/10/27 23:50:35
+2023/10/27 23:52:10
+2023/10/27 23:52:14
+2023/10/27 23:54:10
+2023/10/27 23:54:22
+2023/10/27 23:56:10
+2023/10/27 23:56:19
+2023/10/27 23:58:10
+2023/10/27 23:58:22

+ 720 - 0
listen_data/src/res/清洗数量.txt

@@ -0,0 +1,720 @@
+88
+137
+255
+29
+524
+859
+327
+394
+355
+228
+250
+175
+174
+281
+153
+77
+459
+125
+157
+174
+1225
+400
+420
+209
+274
+199
+76
+187
+174
+324
+201
+206
+350
+330
+413
+327
+204
+167
+196
+222
+181
+248
+104
+67
+424
+119
+109
+138
+227
+100
+459
+309
+237
+202
+100
+253
+228
+154
+116
+144
+234
+197
+103
+112
+199
+114
+111
+226
+411
+187
+119
+101
+56
+207
+102
+162
+207
+77
+85
+281
+345
+119
+259
+74
+144
+166
+103
+180
+151
+40
+126
+136
+112
+152
+385
+79
+49
+242
+219
+219
+91
+60
+65
+98
+126
+95
+156
+94
+75
+371
+55
+123
+80
+295
+99
+194
+232
+111
+111
+89
+50
+81
+55
+84
+177
+240
+116
+39
+64
+174
+203
+93
+80
+89
+61
+201
+92
+73
+137
+216
+285
+64
+154
+99
+30
+102
+71
+234
+177
+124
+56
+76
+190
+146
+103
+115
+139
+126
+143
+167
+74
+62
+148
+160
+132
+116
+44
+66
+116
+231
+156
+44
+239
+238
+63
+123
+78
+74
+310
+100
+125
+83
+59
+87
+89
+297
+113
+82
+39
+68
+112
+48
+121
+11
+44
+298
+45
+86
+33
+95
+460
+149
+40
+303
+58
+159
+39
+104
+25
+210
+173
+38
+51
+149
+76
+112
+45
+61
+185
+133
+168
+113
+70
+65
+242
+111
+148
+149
+115
+157
+58
+323
+134
+83
+82
+215
+99
+203
+230
+151
+172
+193
+183
+64
+201
+112
+152
+108
+123
+127
+124
+277
+76
+140
+95
+604
+214
+375
+289
+232
+577
+215
+236
+1003
+166
+276
+410
+353
+290
+338
+430
+569
+260
+606
+322
+322
+461
+341
+215
+437
+445
+258
+708
+227
+272
+1282
+1497
+343
+314
+976
+1222
+524
+550
+647
+488
+589
+823
+715
+571
+819
+774
+954
+1236
+766
+666
+1402
+1038
+1379
+1098
+1631
+637
+486
+602
+1097
+1086
+930
+822
+592
+935
+537
+1200
+789
+1001
+783
+843
+1508
+680
+927
+568
+629
+951
+713
+973
+648
+655
+772
+622
+724
+901
+932
+1130
+769
+1051
+938
+1775
+1915
+826
+797
+693
+801
+1136
+1009
+2420
+671
+908
+683
+858
+759
+611
+941
+500
+550
+877
+802
+639
+507
+614
+708
+541
+547
+813
+628
+511
+567
+688
+1443
+444
+578
+350
+377
+1562
+873
+529
+531
+514
+445
+253
+318
+176
+400
+419
+375
+370
+470
+217
+287
+366
+284
+401
+271
+284
+235
+324
+471
+220
+407
+403
+190
+240
+304
+836
+1127
+386
+879
+400
+357
+521
+344
+595
+319
+533
+336
+411
+507
+412
+604
+490
+489
+350
+624
+553
+280
+531
+439
+806
+1072
+519
+423
+674
+1212
+867
+647
+734
+369
+647
+540
+663
+527
+805
+454
+905
+730
+506
+793
+579
+693
+841
+830
+668
+689
+619
+691
+735
+760
+578
+2337
+825
+680
+648
+664
+2404
+886
+707
+1165
+891
+1002
+490
+473
+426
+303
+593
+439
+283
+467
+506
+796
+1322
+793
+922
+937
+1399
+1050
+1078
+877
+851
+1793
+1586
+817
+1465
+1896
+1183
+1077
+1649
+947
+1767
+679
+1319
+999
+975
+952
+1156
+706
+1216
+1103
+953
+847
+1008
+972
+1204
+681
+978
+779
+613
+1044
+835
+819
+683
+709
+760
+1770
+1369
+1174
+1307
+1160
+1084
+1165
+878
+704
+836
+1003
+760
+751
+760
+830
+777
+961
+805
+961
+883
+935
+867
+954
+839
+988
+931
+1337
+783
+909
+944
+782
+1734
+566
+1259
+663
+838
+946
+425
+641
+288
+707
+520
+411
+350
+608
+396
+286
+547
+344
+727
+828
+353
+673
+372
+653
+442
+374
+452
+221
+342
+945
+440
+440
+357
+682
+148
+423
+407
+216
+309
+375
+322
+196
+429
+260
+247
+438
+392
+272
+275
+430
+315
+291
+237
+238
+276
+559
+409
+144
+285
+282
+786
+246
+312
+409
+366
+243
+378
+172
+261
+259
+252
+271
+141
+262
+399
+130
+381
+163
+118
+356
+242
+192
+332
+129
+269
+138
+205
+197
+194
+195
+534
+483
+202
+404
+204
+400
+383
+325
+199
+33
+410
+347
+121
+285
+246
+258
+239
+309
+292
+272
+354
+202
+241
+279
+173
+464
+251
+140
+227
+323
+370
+242
+445
+376
+284
+121
+356
+316
+202
+204
+106
+159
+161
+250
+266
+64
+274
+169
+343
+302
+117
+174
+322
+152
+397
+213
+41
+327
+151
+352
+226
+108
+420
+112
+174
+299
+65
+144
+143
+59

+ 1440 - 0
listen_data/src/res/清洗时间.txt

@@ -0,0 +1,1440 @@
+2023/10/27 00:00:34
+2023/10/27 00:00:34
+2023/10/27 00:02:29
+2023/10/27 00:02:29
+2023/10/27 00:04:39
+2023/10/27 00:04:39
+2023/10/27 00:06:34
+2023/10/27 00:06:34
+2023/10/27 00:08:59
+2023/10/27 00:08:59
+2023/10/27 00:11:09
+2023/10/27 00:11:09
+2023/10/27 00:12:34
+2023/10/27 00:12:34
+2023/10/27 00:14:59
+2023/10/27 00:14:59
+2023/10/27 00:16:39
+2023/10/27 00:16:39
+2023/10/27 00:18:49
+2023/10/27 00:18:49
+2023/10/27 00:20:44
+2023/10/27 00:20:45
+2023/10/27 00:22:40
+2023/10/27 00:22:40
+2023/10/27 00:24:50
+2023/10/27 00:24:50
+2023/10/27 00:26:45
+2023/10/27 00:26:45
+2023/10/27 00:28:40
+2023/10/27 00:28:40
+2023/10/27 00:30:35
+2023/10/27 00:30:35
+2023/10/27 00:33:00
+2023/10/27 00:33:00
+2023/10/27 00:34:40
+2023/10/27 00:34:40
+2023/10/27 00:36:35
+2023/10/27 00:36:35
+2023/10/27 00:38:30
+2023/10/27 00:38:30
+2023/10/27 00:41:10
+2023/10/27 00:41:10
+2023/10/27 00:43:05
+2023/10/27 00:43:05
+2023/10/27 00:45:00
+2023/10/27 00:45:00
+2023/10/27 00:46:40
+2023/10/27 00:46:40
+2023/10/27 00:48:35
+2023/10/27 00:48:35
+2023/10/27 00:50:45
+2023/10/27 00:50:45
+2023/10/27 00:52:25
+2023/10/27 00:52:25
+2023/10/27 00:54:35
+2023/10/27 00:54:35
+2023/10/27 00:56:30
+2023/10/27 00:56:30
+2023/10/27 00:58:55
+2023/10/27 00:58:55
+2023/10/27 01:00:35
+2023/10/27 01:00:36
+2023/10/27 01:02:46
+2023/10/27 01:02:46
+2023/10/27 01:04:41
+2023/10/27 01:04:41
+2023/10/27 01:07:06
+2023/10/27 01:07:06
+2023/10/27 01:08:46
+2023/10/27 01:08:46
+2023/10/27 01:10:56
+2023/10/27 01:10:56
+2023/10/27 01:12:51
+2023/10/27 01:12:51
+2023/10/27 01:14:31
+2023/10/27 01:14:31
+2023/10/27 01:16:41
+2023/10/27 01:16:41
+2023/10/27 01:18:36
+2023/10/27 01:18:36
+2023/10/27 01:20:31
+2023/10/27 01:20:31
+2023/10/27 01:22:56
+2023/10/27 01:22:56
+2023/10/27 01:24:36
+2023/10/27 01:24:36
+2023/10/27 01:26:31
+2023/10/27 01:26:31
+2023/10/27 01:29:11
+2023/10/27 01:29:11
+2023/10/27 01:30:36
+2023/10/27 01:30:36
+2023/10/27 01:32:31
+2023/10/27 01:32:31
+2023/10/27 01:34:41
+2023/10/27 01:34:41
+2023/10/27 01:36:36
+2023/10/27 01:36:36
+2023/10/27 01:38:31
+2023/10/27 01:38:31
+2023/10/27 01:40:41
+2023/10/27 01:40:41
+2023/10/27 01:42:51
+2023/10/27 01:42:51
+2023/10/27 01:44:31
+2023/10/27 01:44:31
+2023/10/27 01:46:41
+2023/10/27 01:46:42
+2023/10/27 01:48:37
+2023/10/27 01:48:37
+2023/10/27 01:50:32
+2023/10/27 01:50:32
+2023/10/27 01:52:42
+2023/10/27 01:52:42
+2023/10/27 01:54:37
+2023/10/27 01:54:37
+2023/10/27 01:56:47
+2023/10/27 01:56:47
+2023/10/27 01:58:42
+2023/10/27 01:58:42
+2023/10/27 02:00:37
+2023/10/27 02:00:37
+2023/10/27 02:02:47
+2023/10/27 02:02:47
+2023/10/27 02:04:42
+2023/10/27 02:04:42
+2023/10/27 02:06:37
+2023/10/27 02:06:37
+2023/10/27 02:08:32
+2023/10/27 02:08:32
+2023/10/27 02:10:42
+2023/10/27 02:10:42
+2023/10/27 02:12:37
+2023/10/27 02:12:37
+2023/10/27 02:14:32
+2023/10/27 02:14:32
+2023/10/27 02:16:42
+2023/10/27 02:16:42
+2023/10/27 02:18:52
+2023/10/27 02:18:52
+2023/10/27 02:20:32
+2023/10/27 02:20:32
+2023/10/27 02:22:27
+2023/10/27 02:22:27
+2023/10/27 02:24:37
+2023/10/27 02:24:37
+2023/10/27 02:26:32
+2023/10/27 02:26:32
+2023/10/27 02:28:27
+2023/10/27 02:28:27
+2023/10/27 02:30:37
+2023/10/27 02:30:37
+2023/10/27 02:32:47
+2023/10/27 02:32:47
+2023/10/27 02:34:27
+2023/10/27 02:34:27
+2023/10/27 02:36:37
+2023/10/27 02:36:37
+2023/10/27 02:38:32
+2023/10/27 02:38:32
+2023/10/27 02:40:42
+2023/10/27 02:40:42
+2023/10/27 02:42:37
+2023/10/27 02:42:37
+2023/10/27 02:44:32
+2023/10/27 02:44:32
+2023/10/27 02:46:27
+2023/10/27 02:46:27
+2023/10/27 02:48:38
+2023/10/27 02:48:38
+2023/10/27 02:50:33
+2023/10/27 02:50:33
+2023/10/27 02:52:28
+2023/10/27 02:52:28
+2023/10/27 02:54:38
+2023/10/27 02:54:38
+2023/10/27 02:56:33
+2023/10/27 02:56:33
+2023/10/27 02:58:28
+2023/10/27 02:58:28
+2023/10/27 03:00:23
+2023/10/27 03:00:23
+2023/10/27 03:02:33
+2023/10/27 03:02:33
+2023/10/27 03:04:28
+2023/10/27 03:04:28
+2023/10/27 03:06:38
+2023/10/27 03:06:38
+2023/10/27 03:08:48
+2023/10/27 03:08:48
+2023/10/27 03:10:28
+2023/10/27 03:10:28
+2023/10/27 03:12:38
+2023/10/27 03:12:38
+2023/10/27 03:14:33
+2023/10/27 03:14:33
+2023/10/27 03:16:43
+2023/10/27 03:16:43
+2023/10/27 03:18:53
+2023/10/27 03:18:53
+2023/10/27 03:20:33
+2023/10/27 03:20:33
+2023/10/27 03:22:43
+2023/10/27 03:22:43
+2023/10/27 03:24:38
+2023/10/27 03:24:38
+2023/10/27 03:26:33
+2023/10/27 03:26:33
+2023/10/27 03:28:43
+2023/10/27 03:28:43
+2023/10/27 03:30:38
+2023/10/27 03:30:38
+2023/10/27 03:32:48
+2023/10/27 03:32:48
+2023/10/27 03:34:28
+2023/10/27 03:34:28
+2023/10/27 03:36:38
+2023/10/27 03:36:38
+2023/10/27 03:38:33
+2023/10/27 03:38:33
+2023/10/27 03:40:28
+2023/10/27 03:40:28
+2023/10/27 03:42:38
+2023/10/27 03:42:38
+2023/10/27 03:44:33
+2023/10/27 03:44:33
+2023/10/27 03:46:43
+2023/10/27 03:46:43
+2023/10/27 03:48:38
+2023/10/27 03:48:38
+2023/10/27 03:50:33
+2023/10/27 03:50:33
+2023/10/27 03:52:43
+2023/10/27 03:52:43
+2023/10/27 03:54:39
+2023/10/27 03:54:39
+2023/10/27 03:56:34
+2023/10/27 03:56:34
+2023/10/27 03:58:29
+2023/10/27 03:58:29
+2023/10/27 04:00:39
+2023/10/27 04:00:39
+2023/10/27 04:02:34
+2023/10/27 04:02:34
+2023/10/27 04:04:29
+2023/10/27 04:04:29
+2023/10/27 04:06:39
+2023/10/27 04:06:39
+2023/10/27 04:08:34
+2023/10/27 04:08:34
+2023/10/27 04:10:44
+2023/10/27 04:10:44
+2023/10/27 04:12:39
+2023/10/27 04:12:39
+2023/10/27 04:14:34
+2023/10/27 04:14:34
+2023/10/27 04:16:29
+2023/10/27 04:16:29
+2023/10/27 04:18:39
+2023/10/27 04:18:39
+2023/10/27 04:20:49
+2023/10/27 04:20:49
+2023/10/27 04:22:44
+2023/10/27 04:22:44
+2023/10/27 04:24:39
+2023/10/27 04:24:39
+2023/10/27 04:26:34
+2023/10/27 04:26:34
+2023/10/27 04:28:44
+2023/10/27 04:28:44
+2023/10/27 04:30:39
+2023/10/27 04:30:39
+2023/10/27 04:32:34
+2023/10/27 04:32:34
+2023/10/27 04:34:29
+2023/10/27 04:34:29
+2023/10/27 04:36:39
+2023/10/27 04:36:39
+2023/10/27 04:38:49
+2023/10/27 04:38:49
+2023/10/27 04:40:44
+2023/10/27 04:40:44
+2023/10/27 04:42:39
+2023/10/27 04:42:39
+2023/10/27 04:44:34
+2023/10/27 04:44:34
+2023/10/27 04:46:29
+2023/10/27 04:46:29
+2023/10/27 04:48:30
+2023/10/27 04:48:30
+2023/10/27 04:50:25
+2023/10/27 04:50:25
+2023/10/27 04:52:35
+2023/10/27 04:52:35
+2023/10/27 04:54:45
+2023/10/27 04:54:45
+2023/10/27 04:56:40
+2023/10/27 04:56:40
+2023/10/27 04:58:35
+2023/10/27 04:58:35
+2023/10/27 05:00:30
+2023/10/27 05:00:30
+2023/10/27 05:02:25
+2023/10/27 05:02:25
+2023/10/27 05:04:50
+2023/10/27 05:04:50
+2023/10/27 05:06:45
+2023/10/27 05:06:46
+2023/10/27 05:08:41
+2023/10/27 05:08:41
+2023/10/27 05:10:36
+2023/10/27 05:10:36
+2023/10/27 05:12:31
+2023/10/27 05:12:31
+2023/10/27 05:14:41
+2023/10/27 05:14:41
+2023/10/27 05:16:36
+2023/10/27 05:16:36
+2023/10/27 05:18:31
+2023/10/27 05:18:31
+2023/10/27 05:20:26
+2023/10/27 05:20:26
+2023/10/27 05:22:36
+2023/10/27 05:22:36
+2023/10/27 05:24:31
+2023/10/27 05:24:31
+2023/10/27 05:26:41
+2023/10/27 05:26:41
+2023/10/27 05:28:36
+2023/10/27 05:28:36
+2023/10/27 05:30:46
+2023/10/27 05:30:46
+2023/10/27 05:32:41
+2023/10/27 05:32:41
+2023/10/27 05:34:36
+2023/10/27 05:34:36
+2023/10/27 05:36:31
+2023/10/27 05:36:31
+2023/10/27 05:38:41
+2023/10/27 05:38:41
+2023/10/27 05:40:36
+2023/10/27 05:40:36
+2023/10/27 05:42:31
+2023/10/27 05:42:31
+2023/10/27 05:44:56
+2023/10/27 05:44:56
+2023/10/27 05:46:51
+2023/10/27 05:46:51
+2023/10/27 05:48:31
+2023/10/27 05:48:31
+2023/10/27 05:50:41
+2023/10/27 05:50:41
+2023/10/27 05:52:51
+2023/10/27 05:52:51
+2023/10/27 05:54:31
+2023/10/27 05:54:31
+2023/10/27 05:56:41
+2023/10/27 05:56:41
+2023/10/27 05:58:36
+2023/10/27 05:58:36
+2023/10/27 06:00:46
+2023/10/27 06:00:47
+2023/10/27 06:02:27
+2023/10/27 06:02:27
+2023/10/27 06:04:37
+2023/10/27 06:04:37
+2023/10/27 06:06:32
+2023/10/27 06:06:32
+2023/10/27 06:08:42
+2023/10/27 06:08:42
+2023/10/27 06:10:52
+2023/10/27 06:10:52
+2023/10/27 06:12:32
+2023/10/27 06:12:32
+2023/10/27 06:14:42
+2023/10/27 06:14:42
+2023/10/27 06:16:37
+2023/10/27 06:16:37
+2023/10/27 06:18:32
+2023/10/27 06:18:32
+2023/10/27 06:20:27
+2023/10/27 06:20:27
+2023/10/27 06:22:37
+2023/10/27 06:22:37
+2023/10/27 06:24:32
+2023/10/27 06:24:32
+2023/10/27 06:26:27
+2023/10/27 06:26:27
+2023/10/27 06:28:37
+2023/10/27 06:28:37
+2023/10/27 06:30:32
+2023/10/27 06:30:32
+2023/10/27 06:32:27
+2023/10/27 06:32:27
+2023/10/27 06:34:37
+2023/10/27 06:34:37
+2023/10/27 06:36:32
+2023/10/27 06:36:32
+2023/10/27 06:38:42
+2023/10/27 06:38:42
+2023/10/27 06:40:52
+2023/10/27 06:40:52
+2023/10/27 06:42:47
+2023/10/27 06:42:47
+2023/10/27 06:44:27
+2023/10/27 06:44:28
+2023/10/27 06:46:53
+2023/10/27 06:46:53
+2023/10/27 06:48:33
+2023/10/27 06:48:33
+2023/10/27 06:50:43
+2023/10/27 06:50:43
+2023/10/27 06:52:38
+2023/10/27 06:52:38
+2023/10/27 06:54:48
+2023/10/27 06:54:48
+2023/10/27 06:56:28
+2023/10/27 06:56:28
+2023/10/27 06:58:53
+2023/10/27 06:58:53
+2023/10/27 07:00:33
+2023/10/27 07:00:33
+2023/10/27 07:02:28
+2023/10/27 07:02:28
+2023/10/27 07:04:38
+2023/10/27 07:04:38
+2023/10/27 07:06:33
+2023/10/27 07:06:33
+2023/10/27 07:08:28
+2023/10/27 07:08:28
+2023/10/27 07:10:38
+2023/10/27 07:10:38
+2023/10/27 07:12:33
+2023/10/27 07:12:33
+2023/10/27 07:14:28
+2023/10/27 07:14:28
+2023/10/27 07:16:38
+2023/10/27 07:16:38
+2023/10/27 07:18:33
+2023/10/27 07:18:33
+2023/10/27 07:20:43
+2023/10/27 07:20:43
+2023/10/27 07:22:38
+2023/10/27 07:22:38
+2023/10/27 07:24:33
+2023/10/27 07:24:33
+2023/10/27 07:26:28
+2023/10/27 07:26:28
+2023/10/27 07:28:53
+2023/10/27 07:28:53
+2023/10/27 07:30:33
+2023/10/27 07:30:33
+2023/10/27 07:32:43
+2023/10/27 07:32:43
+2023/10/27 07:34:53
+2023/10/27 07:34:53
+2023/10/27 07:36:33
+2023/10/27 07:36:33
+2023/10/27 07:38:28
+2023/10/27 07:38:28
+2023/10/27 07:40:38
+2023/10/27 07:40:38
+2023/10/27 07:42:48
+2023/10/27 07:42:48
+2023/10/27 07:44:28
+2023/10/27 07:44:28
+2023/10/27 07:46:38
+2023/10/27 07:46:39
+2023/10/27 07:48:34
+2023/10/27 07:48:34
+2023/10/27 07:50:44
+2023/10/27 07:50:44
+2023/10/27 07:52:39
+2023/10/27 07:52:39
+2023/10/27 07:54:34
+2023/10/27 07:54:34
+2023/10/27 07:56:44
+2023/10/27 07:56:44
+2023/10/27 07:58:39
+2023/10/27 07:58:39
+2023/10/27 08:00:34
+2023/10/27 08:00:34
+2023/10/27 08:02:44
+2023/10/27 08:02:44
+2023/10/27 08:04:39
+2023/10/27 08:04:39
+2023/10/27 08:06:34
+2023/10/27 08:06:34
+2023/10/27 08:08:44
+2023/10/27 08:08:44
+2023/10/27 08:10:39
+2023/10/27 08:10:39
+2023/10/27 08:12:34
+2023/10/27 08:12:34
+2023/10/27 08:14:29
+2023/10/27 08:14:29
+2023/10/27 08:16:39
+2023/10/27 08:16:39
+2023/10/27 08:18:34
+2023/10/27 08:18:34
+2023/10/27 08:20:29
+2023/10/27 08:20:29
+2023/10/27 08:22:54
+2023/10/27 08:22:54
+2023/10/27 08:24:34
+2023/10/27 08:24:34
+2023/10/27 08:26:44
+2023/10/27 08:26:44
+2023/10/27 08:28:39
+2023/10/27 08:28:39
+2023/10/27 08:30:49
+2023/10/27 08:30:49
+2023/10/27 08:32:44
+2023/10/27 08:32:45
+2023/10/27 08:34:55
+2023/10/27 08:34:55
+2023/10/27 08:36:50
+2023/10/27 08:36:50
+2023/10/27 08:38:45
+2023/10/27 08:38:45
+2023/10/27 08:41:10
+2023/10/27 08:41:10
+2023/10/27 08:42:50
+2023/10/27 08:42:50
+2023/10/27 08:44:45
+2023/10/27 08:44:45
+2023/10/27 08:47:10
+2023/10/27 08:47:10
+2023/10/27 08:48:35
+2023/10/27 08:48:35
+2023/10/27 08:50:45
+2023/10/27 08:50:45
+2023/10/27 08:53:10
+2023/10/27 08:53:11
+2023/10/27 08:54:51
+2023/10/27 08:54:51
+2023/10/27 08:56:46
+2023/10/27 08:56:46
+2023/10/27 08:58:41
+2023/10/27 08:58:41
+2023/10/27 09:01:06
+2023/10/27 09:01:06
+2023/10/27 09:03:01
+2023/10/27 09:03:01
+2023/10/27 09:04:41
+2023/10/27 09:04:41
+2023/10/27 09:06:51
+2023/10/27 09:06:51
+2023/10/27 09:08:46
+2023/10/27 09:08:46
+2023/10/27 09:10:41
+2023/10/27 09:10:41
+2023/10/27 09:13:07
+2023/10/27 09:13:07
+2023/10/27 09:14:47
+2023/10/27 09:14:47
+2023/10/27 09:16:42
+2023/10/27 09:16:42
+2023/10/27 09:18:52
+2023/10/27 09:18:52
+2023/10/27 09:20:47
+2023/10/27 09:20:47
+2023/10/27 09:22:42
+2023/10/27 09:22:42
+2023/10/27 09:24:52
+2023/10/27 09:24:52
+2023/10/27 09:26:32
+2023/10/27 09:26:32
+2023/10/27 09:28:42
+2023/10/27 09:28:42
+2023/10/27 09:31:22
+2023/10/27 09:31:22
+2023/10/27 09:33:17
+2023/10/27 09:33:17
+2023/10/27 09:34:42
+2023/10/27 09:34:42
+2023/10/27 09:36:37
+2023/10/27 09:36:38
+2023/10/27 09:39:18
+2023/10/27 09:39:18
+2023/10/27 09:41:13
+2023/10/27 09:41:13
+2023/10/27 09:42:53
+2023/10/27 09:42:53
+2023/10/27 09:45:18
+2023/10/27 09:45:18
+2023/10/27 09:47:13
+2023/10/27 09:47:13
+2023/10/27 09:49:08
+2023/10/27 09:49:09
+2023/10/27 09:51:04
+2023/10/27 09:51:04
+2023/10/27 09:53:44
+2023/10/27 09:53:44
+2023/10/27 09:55:09
+2023/10/27 09:55:09
+2023/10/27 09:57:19
+2023/10/27 09:57:19
+2023/10/27 09:59:59
+2023/10/27 09:59:59
+2023/10/27 10:01:39
+2023/10/27 10:01:39
+2023/10/27 10:04:04
+2023/10/27 10:04:05
+2023/10/27 10:05:45
+2023/10/27 10:05:45
+2023/10/27 10:07:25
+2023/10/27 10:07:25
+2023/10/27 10:09:20
+2023/10/27 10:09:20
+2023/10/27 10:11:30
+2023/10/27 10:11:31
+2023/10/27 10:13:56
+2023/10/27 10:13:56
+2023/10/27 10:16:21
+2023/10/27 10:16:21
+2023/10/27 10:17:31
+2023/10/27 10:17:32
+2023/10/27 10:19:42
+2023/10/27 10:19:42
+2023/10/27 10:21:07
+2023/10/27 10:21:07
+2023/10/27 10:22:47
+2023/10/27 10:22:47
+2023/10/27 10:24:42
+2023/10/27 10:24:42
+2023/10/27 10:27:37
+2023/10/27 10:27:37
+2023/10/27 10:29:32
+2023/10/27 10:29:33
+2023/10/27 10:31:13
+2023/10/27 10:31:13
+2023/10/27 10:33:23
+2023/10/27 10:33:23
+2023/10/27 10:35:18
+2023/10/27 10:35:18
+2023/10/27 10:37:28
+2023/10/27 10:37:28
+2023/10/27 10:39:08
+2023/10/27 10:39:08
+2023/10/27 10:41:18
+2023/10/27 10:41:18
+2023/10/27 10:43:28
+2023/10/27 10:43:28
+2023/10/27 10:45:23
+2023/10/27 10:45:24
+2023/10/27 10:47:19
+2023/10/27 10:47:19
+2023/10/27 10:49:44
+2023/10/27 10:49:44
+2023/10/27 10:51:39
+2023/10/27 10:51:39
+2023/10/27 10:53:34
+2023/10/27 10:53:34
+2023/10/27 10:55:29
+2023/10/27 10:55:29
+2023/10/27 10:57:09
+2023/10/27 10:57:10
+2023/10/27 10:59:20
+2023/10/27 10:59:20
+2023/10/27 11:01:15
+2023/10/27 11:01:15
+2023/10/27 11:03:25
+2023/10/27 11:03:25
+2023/10/27 11:05:35
+2023/10/27 11:05:35
+2023/10/27 11:07:30
+2023/10/27 11:07:30
+2023/10/27 11:09:10
+2023/10/27 11:09:10
+2023/10/27 11:11:20
+2023/10/27 11:11:20
+2023/10/27 11:13:15
+2023/10/27 11:13:16
+2023/10/27 11:15:26
+2023/10/27 11:15:26
+2023/10/27 11:17:21
+2023/10/27 11:17:21
+2023/10/27 11:19:31
+2023/10/27 11:19:31
+2023/10/27 11:21:41
+2023/10/27 11:21:42
+2023/10/27 11:23:37
+2023/10/27 11:23:37
+2023/10/27 11:25:47
+2023/10/27 11:25:47
+2023/10/27 11:27:57
+2023/10/27 11:27:57
+2023/10/27 11:30:22
+2023/10/27 11:30:22
+2023/10/27 11:32:02
+2023/10/27 11:32:03
+2023/10/27 11:33:58
+2023/10/27 11:33:58
+2023/10/27 11:35:38
+2023/10/27 11:35:38
+2023/10/27 11:37:33
+2023/10/27 11:37:33
+2023/10/27 11:39:28
+2023/10/27 11:39:29
+2023/10/27 11:41:54
+2023/10/27 11:41:54
+2023/10/27 11:43:34
+2023/10/27 11:43:34
+2023/10/27 11:46:14
+2023/10/27 11:46:15
+2023/10/27 11:47:55
+2023/10/27 11:47:55
+2023/10/27 11:49:20
+2023/10/27 11:49:20
+2023/10/27 11:51:45
+2023/10/27 11:51:45
+2023/10/27 11:53:40
+2023/10/27 11:53:40
+2023/10/27 11:55:05
+2023/10/27 11:55:06
+2023/10/27 11:57:16
+2023/10/27 11:57:16
+2023/10/27 11:59:56
+2023/10/27 11:59:56
+2023/10/27 12:01:06
+2023/10/27 12:01:06
+2023/10/27 12:03:31
+2023/10/27 12:03:31
+2023/10/27 12:05:56
+2023/10/27 12:05:56
+2023/10/27 12:07:06
+2023/10/27 12:07:06
+2023/10/27 12:09:16
+2023/10/27 12:09:17
+2023/10/27 12:11:12
+2023/10/27 12:11:12
+2023/10/27 12:13:22
+2023/10/27 12:13:22
+2023/10/27 12:15:17
+2023/10/27 12:15:17
+2023/10/27 12:17:42
+2023/10/27 12:17:42
+2023/10/27 12:19:07
+2023/10/27 12:19:07
+2023/10/27 12:21:02
+2023/10/27 12:21:02
+2023/10/27 12:23:27
+2023/10/27 12:23:27
+2023/10/27 12:25:07
+2023/10/27 12:25:07
+2023/10/27 12:27:02
+2023/10/27 12:27:03
+2023/10/27 12:29:43
+2023/10/27 12:29:43
+2023/10/27 12:31:38
+2023/10/27 12:31:38
+2023/10/27 12:33:03
+2023/10/27 12:33:03
+2023/10/27 12:35:13
+2023/10/27 12:35:13
+2023/10/27 12:36:53
+2023/10/27 12:36:53
+2023/10/27 12:39:03
+2023/10/27 12:39:03
+2023/10/27 12:41:28
+2023/10/27 12:41:29
+2023/10/27 12:43:09
+2023/10/27 12:43:09
+2023/10/27 12:45:04
+2023/10/27 12:45:04
+2023/10/27 12:47:14
+2023/10/27 12:47:14
+2023/10/27 12:48:54
+2023/10/27 12:48:54
+2023/10/27 12:51:19
+2023/10/27 12:51:19
+2023/10/27 12:52:44
+2023/10/27 12:52:44
+2023/10/27 12:54:54
+2023/10/27 12:54:54
+2023/10/27 12:56:49
+2023/10/27 12:56:49
+2023/10/27 12:58:59
+2023/10/27 12:58:59
+2023/10/27 13:00:54
+2023/10/27 13:00:54
+2023/10/27 13:03:04
+2023/10/27 13:03:05
+2023/10/27 13:05:15
+2023/10/27 13:05:15
+2023/10/27 13:06:55
+2023/10/27 13:06:55
+2023/10/27 13:08:50
+2023/10/27 13:08:50
+2023/10/27 13:10:45
+2023/10/27 13:10:45
+2023/10/27 13:13:10
+2023/10/27 13:13:10
+2023/10/27 13:14:50
+2023/10/27 13:14:50
+2023/10/27 13:17:00
+2023/10/27 13:17:00
+2023/10/27 13:18:55
+2023/10/27 13:18:55
+2023/10/27 13:20:50
+2023/10/27 13:20:50
+2023/10/27 13:22:45
+2023/10/27 13:22:45
+2023/10/27 13:24:55
+2023/10/27 13:24:55
+2023/10/27 13:27:05
+2023/10/27 13:27:06
+2023/10/27 13:29:01
+2023/10/27 13:29:01
+2023/10/27 13:30:56
+2023/10/27 13:30:56
+2023/10/27 13:32:51
+2023/10/27 13:32:51
+2023/10/27 13:35:01
+2023/10/27 13:35:01
+2023/10/27 13:36:56
+2023/10/27 13:36:56
+2023/10/27 13:39:06
+2023/10/27 13:39:06
+2023/10/27 13:41:01
+2023/10/27 13:41:01
+2023/10/27 13:43:11
+2023/10/27 13:43:11
+2023/10/27 13:44:51
+2023/10/27 13:44:51
+2023/10/27 13:47:16
+2023/10/27 13:47:16
+2023/10/27 13:49:12
+2023/10/27 13:49:12
+2023/10/27 13:51:07
+2023/10/27 13:51:07
+2023/10/27 13:53:32
+2023/10/27 13:53:32
+2023/10/27 13:55:12
+2023/10/27 13:55:12
+2023/10/27 13:57:07
+2023/10/27 13:57:07
+2023/10/27 13:59:02
+2023/10/27 13:59:03
+2023/10/27 14:01:13
+2023/10/27 14:01:13
+2023/10/27 14:02:53
+2023/10/27 14:02:53
+2023/10/27 14:05:03
+2023/10/27 14:05:03
+2023/10/27 14:06:58
+2023/10/27 14:06:58
+2023/10/27 14:09:08
+2023/10/27 14:09:08
+2023/10/27 14:11:18
+2023/10/27 14:11:18
+2023/10/27 14:12:58
+2023/10/27 14:12:58
+2023/10/27 14:15:08
+2023/10/27 14:15:08
+2023/10/27 14:17:03
+2023/10/27 14:17:04
+2023/10/27 14:19:14
+2023/10/27 14:19:14
+2023/10/27 14:21:09
+2023/10/27 14:21:09
+2023/10/27 14:22:49
+2023/10/27 14:22:49
+2023/10/27 14:25:14
+2023/10/27 14:25:14
+2023/10/27 14:27:09
+2023/10/27 14:27:09
+2023/10/27 14:29:19
+2023/10/27 14:29:19
+2023/10/27 14:31:44
+2023/10/27 14:31:44
+2023/10/27 14:32:54
+2023/10/27 14:32:55
+2023/10/27 14:35:05
+2023/10/27 14:35:05
+2023/10/27 14:37:15
+2023/10/27 14:37:15
+2023/10/27 14:39:40
+2023/10/27 14:39:40
+2023/10/27 14:41:05
+2023/10/27 14:41:05
+2023/10/27 14:43:15
+2023/10/27 14:43:15
+2023/10/27 14:45:25
+2023/10/27 14:45:25
+2023/10/27 14:47:05
+2023/10/27 14:47:05
+2023/10/27 14:49:30
+2023/10/27 14:49:30
+2023/10/27 14:51:10
+2023/10/27 14:51:11
+2023/10/27 14:53:36
+2023/10/27 14:53:36
+2023/10/27 14:55:01
+2023/10/27 14:55:01
+2023/10/27 14:57:41
+2023/10/27 14:57:41
+2023/10/27 14:59:06
+2023/10/27 14:59:06
+2023/10/27 15:01:31
+2023/10/27 15:01:31
+2023/10/27 15:03:41
+2023/10/27 15:03:41
+2023/10/27 15:05:21
+2023/10/27 15:05:21
+2023/10/27 15:07:17
+2023/10/27 15:07:17
+2023/10/27 15:09:27
+2023/10/27 15:09:27
+2023/10/27 15:11:22
+2023/10/27 15:11:22
+2023/10/27 15:13:32
+2023/10/27 15:13:32
+2023/10/27 15:15:42
+2023/10/27 15:15:42
+2023/10/27 15:17:22
+2023/10/27 15:17:22
+2023/10/27 15:19:17
+2023/10/27 15:19:17
+2023/10/27 15:20:57
+2023/10/27 15:20:58
+2023/10/27 15:23:23
+2023/10/27 15:23:23
+2023/10/27 15:25:03
+2023/10/27 15:25:03
+2023/10/27 15:27:43
+2023/10/27 15:27:43
+2023/10/27 15:29:23
+2023/10/27 15:29:23
+2023/10/27 15:32:18
+2023/10/27 15:32:19
+2023/10/27 15:33:29
+2023/10/27 15:33:29
+2023/10/27 15:35:24
+2023/10/27 15:35:25
+2023/10/27 15:37:20
+2023/10/27 15:37:20
+2023/10/27 15:39:45
+2023/10/27 15:39:45
+2023/10/27 15:41:55
+2023/10/27 15:41:55
+2023/10/27 15:43:35
+2023/10/27 15:43:36
+2023/10/27 15:45:46
+2023/10/27 15:45:46
+2023/10/27 15:47:41
+2023/10/27 15:47:41
+2023/10/27 15:50:21
+2023/10/27 15:50:21
+2023/10/27 15:51:16
+2023/10/27 15:51:17
+2023/10/27 15:52:57
+2023/10/27 15:52:57
+2023/10/27 15:54:52
+2023/10/27 15:54:52
+2023/10/27 15:56:47
+2023/10/27 15:56:47
+2023/10/27 15:58:57
+2023/10/27 15:58:57
+2023/10/27 16:00:52
+2023/10/27 16:00:52
+2023/10/27 16:02:47
+2023/10/27 16:02:47
+2023/10/27 16:04:42
+2023/10/27 16:04:43
+2023/10/27 16:06:53
+2023/10/27 16:06:53
+2023/10/27 16:09:03
+2023/10/27 16:09:03
+2023/10/27 16:11:43
+2023/10/27 16:11:43
+2023/10/27 16:15:08
+2023/10/27 16:15:08
+2023/10/27 16:16:48
+2023/10/27 16:16:48
+2023/10/27 16:18:13
+2023/10/27 16:18:13
+2023/10/27 16:19:38
+2023/10/27 16:19:39
+2023/10/27 16:22:34
+2023/10/27 16:22:34
+2023/10/27 16:23:59
+2023/10/27 16:23:59
+2023/10/27 16:26:54
+2023/10/27 16:26:54
+2023/10/27 16:28:04
+2023/10/27 16:28:04
+2023/10/27 16:29:44
+2023/10/27 16:29:45
+2023/10/27 16:31:40
+2023/10/27 16:31:40
+2023/10/27 16:33:35
+2023/10/27 16:33:35
+2023/10/27 16:35:15
+2023/10/27 16:35:15
+2023/10/27 16:39:10
+2023/10/27 16:39:11
+2023/10/27 16:41:06
+2023/10/27 16:41:06
+2023/10/27 16:43:16
+2023/10/27 16:43:17
+2023/10/27 16:45:27
+2023/10/27 16:45:27
+2023/10/27 16:47:07
+2023/10/27 16:47:07
+2023/10/27 16:49:02
+2023/10/27 16:49:02
+2023/10/27 16:50:42
+2023/10/27 16:50:43
+2023/10/27 16:51:53
+2023/10/27 16:51:53
+2023/10/27 16:54:18
+2023/10/27 16:54:19
+2023/10/27 16:56:14
+2023/10/27 16:56:14
+2023/10/27 16:58:24
+2023/10/27 16:58:24
+2023/10/27 17:00:19
+2023/10/27 17:00:19
+2023/10/27 17:02:15
+2023/10/27 17:02:15
+2023/10/27 17:03:40
+2023/10/27 17:03:40
+2023/10/27 17:05:50
+2023/10/27 17:05:50
+2023/10/27 17:08:15
+2023/10/27 17:08:16
+2023/10/27 17:09:56
+2023/10/27 17:09:56
+2023/10/27 17:11:51
+2023/10/27 17:11:51
+2023/10/27 17:13:31
+2023/10/27 17:13:31
+2023/10/27 17:16:26
+2023/10/27 17:16:27
+2023/10/27 17:18:07
+2023/10/27 17:18:07
+2023/10/27 17:19:32
+2023/10/27 17:19:32
+2023/10/27 17:22:12
+2023/10/27 17:22:12
+2023/10/27 17:24:07
+2023/10/27 17:24:07
+2023/10/27 17:25:32
+2023/10/27 17:25:33
+2023/10/27 17:28:13
+2023/10/27 17:28:13
+2023/10/27 17:29:38
+2023/10/27 17:29:38
+2023/10/27 17:31:48
+2023/10/27 17:31:48
+2023/10/27 17:34:28
+2023/10/27 17:34:28
+2023/10/27 17:35:38
+2023/10/27 17:35:38
+2023/10/27 17:38:18
+2023/10/27 17:38:18
+2023/10/27 17:40:28
+2023/10/27 17:40:29
+2023/10/27 17:42:24
+2023/10/27 17:42:24
+2023/10/27 17:44:34
+2023/10/27 17:44:34
+2023/10/27 17:45:59
+2023/10/27 17:46:00
+2023/10/27 17:48:10
+2023/10/27 17:48:10
+2023/10/27 17:50:20
+2023/10/27 17:50:21
+2023/10/27 17:53:01
+2023/10/27 17:53:01
+2023/10/27 17:54:11
+2023/10/27 17:54:11
+2023/10/27 17:55:36
+2023/10/27 17:55:36
+2023/10/27 17:57:46
+2023/10/27 17:57:46
+2023/10/27 17:59:41
+2023/10/27 17:59:41
+2023/10/27 18:02:06
+2023/10/27 18:02:07
+2023/10/27 18:04:17
+2023/10/27 18:04:17
+2023/10/27 18:05:57
+2023/10/27 18:05:57
+2023/10/27 18:08:07
+2023/10/27 18:08:07
+2023/10/27 18:10:02
+2023/10/27 18:10:02
+2023/10/27 18:11:57
+2023/10/27 18:11:57
+2023/10/27 18:13:52
+2023/10/27 18:13:52
+2023/10/27 18:16:32
+2023/10/27 18:16:33
+2023/10/27 18:18:13
+2023/10/27 18:18:13
+2023/10/27 18:20:08
+2023/10/27 18:20:08
+2023/10/27 18:22:03
+2023/10/27 18:22:03
+2023/10/27 18:25:13
+2023/10/27 18:25:14
+2023/10/27 18:27:24
+2023/10/27 18:27:24
+2023/10/27 18:28:49
+2023/10/27 18:28:49
+2023/10/27 18:31:14
+2023/10/27 18:31:14
+2023/10/27 18:33:24
+2023/10/27 18:33:24
+2023/10/27 18:36:04
+2023/10/27 18:36:05
+2023/10/27 18:37:30
+2023/10/27 18:37:30
+2023/10/27 18:40:10
+2023/10/27 18:40:10
+2023/10/27 18:41:20
+2023/10/27 18:41:20
+2023/10/27 18:44:15
+2023/10/27 18:44:15
+2023/10/27 18:45:40
+2023/10/27 18:45:40
+2023/10/27 18:48:20
+2023/10/27 18:48:21
+2023/10/27 18:49:31
+2023/10/27 18:49:31
+2023/10/27 18:50:26
+2023/10/27 18:50:26
+2023/10/27 18:52:21
+2023/10/27 18:52:21
+2023/10/27 18:53:16
+2023/10/27 18:53:16
+2023/10/27 18:55:56
+2023/10/27 18:55:57
+2023/10/27 18:57:07
+2023/10/27 18:57:07
+2023/10/27 18:59:47
+2023/10/27 18:59:47
+2023/10/27 19:01:27
+2023/10/27 19:01:27
+2023/10/27 19:03:37
+2023/10/27 19:03:37
+2023/10/27 19:05:17
+2023/10/27 19:05:17
+2023/10/27 19:08:12
+2023/10/27 19:08:12
+2023/10/27 19:09:07
+2023/10/27 19:09:07
+2023/10/27 19:11:02
+2023/10/27 19:11:02
+2023/10/27 19:13:57
+2023/10/27 19:13:57
+2023/10/27 19:14:52
+2023/10/27 19:14:52
+2023/10/27 19:17:47
+2023/10/27 19:17:47
+2023/10/27 19:19:27
+2023/10/27 19:19:28
+2023/10/27 19:21:23
+2023/10/27 19:21:23
+2023/10/27 19:23:48
+2023/10/27 19:23:48
+2023/10/27 19:25:28
+2023/10/27 19:25:28
+2023/10/27 19:27:38
+2023/10/27 19:27:38
+2023/10/27 19:29:03
+2023/10/27 19:29:03
+2023/10/27 19:31:28
+2023/10/27 19:31:28
+2023/10/27 19:33:38
+2023/10/27 19:33:38
+2023/10/27 19:35:03
+2023/10/27 19:35:03
+2023/10/27 19:37:28
+2023/10/27 19:37:28
+2023/10/27 19:39:08
+2023/10/27 19:39:08
+2023/10/27 19:41:18
+2023/10/27 19:41:19
+2023/10/27 19:43:14
+2023/10/27 19:43:14
+2023/10/27 19:45:09
+2023/10/27 19:45:09
+2023/10/27 19:47:34
+2023/10/27 19:47:34
+2023/10/27 19:48:44
+2023/10/27 19:48:44
+2023/10/27 19:51:24
+2023/10/27 19:51:24
+2023/10/27 19:53:19
+2023/10/27 19:53:19
+2023/10/27 19:54:59
+2023/10/27 19:54:59
+2023/10/27 19:57:09
+2023/10/27 19:57:09
+2023/10/27 19:59:04
+2023/10/27 19:59:04
+2023/10/27 20:01:14
+2023/10/27 20:01:14
+2023/10/27 20:03:09
+2023/10/27 20:03:09
+2023/10/27 20:05:19
+2023/10/27 20:05:19
+2023/10/27 20:07:14
+2023/10/27 20:07:14
+2023/10/27 20:08:54
+2023/10/27 20:08:54
+2023/10/27 20:11:34
+2023/10/27 20:11:35
+2023/10/27 20:13:15
+2023/10/27 20:13:15
+2023/10/27 20:15:10
+2023/10/27 20:15:10
+2023/10/27 20:17:05
+2023/10/27 20:17:05
+2023/10/27 20:19:00
+2023/10/27 20:19:00
+2023/10/27 20:21:10
+2023/10/27 20:21:10
+2023/10/27 20:23:05
+2023/10/27 20:23:05
+2023/10/27 20:25:00
+2023/10/27 20:25:00
+2023/10/27 20:27:10
+2023/10/27 20:27:10
+2023/10/27 20:29:05
+2023/10/27 20:29:05
+2023/10/27 20:31:15
+2023/10/27 20:31:15
+2023/10/27 20:33:25
+2023/10/27 20:33:25
+2023/10/27 20:34:50
+2023/10/27 20:34:50
+2023/10/27 20:37:15
+2023/10/27 20:37:15
+2023/10/27 20:39:10
+2023/10/27 20:39:10
+2023/10/27 20:41:20
+2023/10/27 20:41:20
+2023/10/27 20:43:00
+2023/10/27 20:43:00
+2023/10/27 20:44:56
+2023/10/27 20:44:56
+2023/10/27 20:47:21
+2023/10/27 20:47:21
+2023/10/27 20:49:16
+2023/10/27 20:49:16
+2023/10/27 20:51:11
+2023/10/27 20:51:11
+2023/10/27 20:53:06
+2023/10/27 20:53:06
+2023/10/27 20:55:01
+2023/10/27 20:55:01
+2023/10/27 20:57:11
+2023/10/27 20:57:11
+2023/10/27 20:59:06
+2023/10/27 20:59:06
+2023/10/27 21:01:16
+2023/10/27 21:01:16
+2023/10/27 21:02:56
+2023/10/27 21:02:56
+2023/10/27 21:04:36
+2023/10/27 21:04:36
+2023/10/27 21:07:01
+2023/10/27 21:07:01
+2023/10/27 21:08:41
+2023/10/27 21:08:41
+2023/10/27 21:10:36
+2023/10/27 21:10:37
+2023/10/27 21:13:17
+2023/10/27 21:13:17
+2023/10/27 21:14:42
+2023/10/27 21:14:42
+2023/10/27 21:16:22
+2023/10/27 21:16:22
+2023/10/27 21:19:32
+2023/10/27 21:19:32
+2023/10/27 21:20:42
+2023/10/27 21:20:42
+2023/10/27 21:22:22
+2023/10/27 21:22:22
+2023/10/27 21:25:17
+2023/10/27 21:25:17
+2023/10/27 21:26:27
+2023/10/27 21:26:27
+2023/10/27 21:28:37
+2023/10/27 21:28:37
+2023/10/27 21:30:32
+2023/10/27 21:30:32
+2023/10/27 21:32:42
+2023/10/27 21:32:42
+2023/10/27 21:34:37
+2023/10/27 21:34:37
+2023/10/27 21:36:32
+2023/10/27 21:36:32
+2023/10/27 21:38:27
+2023/10/27 21:38:27
+2023/10/27 21:40:37
+2023/10/27 21:40:37
+2023/10/27 21:42:32
+2023/10/27 21:42:33
+2023/10/27 21:44:13
+2023/10/27 21:44:13
+2023/10/27 21:46:38
+2023/10/27 21:46:38
+2023/10/27 21:48:33
+2023/10/27 21:48:33
+2023/10/27 21:50:43
+2023/10/27 21:50:43
+2023/10/27 21:52:38
+2023/10/27 21:52:38
+2023/10/27 21:54:33
+2023/10/27 21:54:33
+2023/10/27 21:56:43
+2023/10/27 21:56:43
+2023/10/27 21:58:23
+2023/10/27 21:58:23
+2023/10/27 22:00:48
+2023/10/27 22:00:48
+2023/10/27 22:02:43
+2023/10/27 22:02:43
+2023/10/27 22:04:23
+2023/10/27 22:04:23
+2023/10/27 22:06:33
+2023/10/27 22:06:33
+2023/10/27 22:08:28
+2023/10/27 22:08:28
+2023/10/27 22:10:38
+2023/10/27 22:10:38
+2023/10/27 22:12:18
+2023/10/27 22:12:18
+2023/10/27 22:14:28
+2023/10/27 22:14:28
+2023/10/27 22:16:38
+2023/10/27 22:16:38
+2023/10/27 22:18:33
+2023/10/27 22:18:33
+2023/10/27 22:20:28
+2023/10/27 22:20:28
+2023/10/27 22:22:39
+2023/10/27 22:22:39
+2023/10/27 22:24:34
+2023/10/27 22:24:34
+2023/10/27 22:26:29
+2023/10/27 22:26:29
+2023/10/27 22:28:39
+2023/10/27 22:28:39
+2023/10/27 22:30:49
+2023/10/27 22:30:49
+2023/10/27 22:32:29
+2023/10/27 22:32:29
+2023/10/27 22:34:24
+2023/10/27 22:34:24
+2023/10/27 22:36:19
+2023/10/27 22:36:19
+2023/10/27 22:38:44
+2023/10/27 22:38:44
+2023/10/27 22:40:24
+2023/10/27 22:40:25
+2023/10/27 22:42:35
+2023/10/27 22:42:35
+2023/10/27 22:44:30
+2023/10/27 22:44:30
+2023/10/27 22:46:40
+2023/10/27 22:46:40
+2023/10/27 22:48:35
+2023/10/27 22:48:35
+2023/10/27 22:50:30
+2023/10/27 22:50:30
+2023/10/27 22:52:40
+2023/10/27 22:52:40
+2023/10/27 22:54:35
+2023/10/27 22:54:35
+2023/10/27 22:56:30
+2023/10/27 22:56:30
+2023/10/27 22:58:40
+2023/10/27 22:58:40
+2023/10/27 23:00:20
+2023/10/27 23:00:20
+2023/10/27 23:02:30
+2023/10/27 23:02:30
+2023/10/27 23:04:40
+2023/10/27 23:04:40
+2023/10/27 23:06:20
+2023/10/27 23:06:20
+2023/10/27 23:08:30
+2023/10/27 23:08:30
+2023/10/27 23:10:26
+2023/10/27 23:10:26
+2023/10/27 23:12:36
+2023/10/27 23:12:36
+2023/10/27 23:14:31
+2023/10/27 23:14:31
+2023/10/27 23:16:26
+2023/10/27 23:16:26
+2023/10/27 23:18:51
+2023/10/27 23:18:51
+2023/10/27 23:20:31
+2023/10/27 23:20:31
+2023/10/27 23:22:26
+2023/10/27 23:22:26
+2023/10/27 23:24:36
+2023/10/27 23:24:36
+2023/10/27 23:26:31
+2023/10/27 23:26:31
+2023/10/27 23:28:41
+2023/10/27 23:28:41
+2023/10/27 23:30:36
+2023/10/27 23:30:36
+2023/10/27 23:32:16
+2023/10/27 23:32:16
+2023/10/27 23:35:26
+2023/10/27 23:35:26
+2023/10/27 23:36:21
+2023/10/27 23:36:21
+2023/10/27 23:38:46
+2023/10/27 23:38:46
+2023/10/27 23:40:26
+2023/10/27 23:40:27
+2023/10/27 23:42:37
+2023/10/27 23:42:37
+2023/10/27 23:44:32
+2023/10/27 23:44:32
+2023/10/27 23:46:27
+2023/10/27 23:46:27
+2023/10/27 23:48:22
+2023/10/27 23:48:22
+2023/10/27 23:50:47
+2023/10/27 23:50:47
+2023/10/27 23:52:27
+2023/10/27 23:52:27
+2023/10/27 23:54:22
+2023/10/27 23:54:22
+2023/10/27 23:56:32
+2023/10/27 23:56:32
+2023/10/27 23:58:27
+2023/10/27 23:58:27

File diff suppressed because it is too large
+ 736 - 687
listen_data/src/zkmethod.go


Some files were not shown because too many files changed in this diff