123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package config
- import (
- "app.yhyue.com/moapp/jybase/mysql"
- "github.com/zeromicro/go-zero/core/logx"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- UserCenterRpc zrpc.RpcClientConf
- Logx logx.LogConf
- Mysql struct {
- JianYu *mysql.Mysql
- JyDoc *mysql.Mysql
- Bi *mysql.Mysql
- Tidb *mysql.Mysql
- BiTidb *mysql.Mysql
- CallTidb *mysql.Mysql
- BiService *mysql.Mysql
- }
- Mongo struct {
- Qfw struct {
- MongodbAddr string
- Size int
- DbName string
- }
- Bidding struct {
- MongodbAddr string
- Size int
- DbName string
- UserName string
- Password string
- }
- Qyxy struct {
- MongodbAddr string
- Size int
- DbName string
- UserName string
- Password string
- }
- }
- Es struct {
- Address string
- DbSize int
- Index string
- IType string
- Version string
- UserName string
- Password string
- }
- EntEs struct {
- Address string
- DbSize int
- Version string
- UserName string
- Password string
- }
- CustomerCol string
- AddCountLimit int
- DrawCountLimit int
- TopicName string
- NsqUrl string
- RedisAddress []string
- Hlyj struct {
- Appid string
- Account string
- Secret string
- TokenUrl string
- CallFlag int
- CallUrl string
- Integratedid string
- }
- PublicKey string
- Mail []struct {
- Addr string
- Port int
- Pwd string
- User string
- }
- UpdateProjectUrl string
- ExportDirectory string
- ComFileDir string
- ExportCount int
- ExportUrl string
- ComFileUrl string
- }
|