1234567891011121314151617181920212223242526 |
- package main
- type GlobalConf struct {
- MongoP MgoConf
- MongoB MgoConf
- Mongo181 MgoConf
- Env EnvConf
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- Direct bool
- }
- type EnvConf struct {
- File string
- Sheet string
- Savecoll string
- BidFields []string
- NjFields []string
- }
|