1234567891011121314151617181920 |
- package config
- import (
- "app.yhyue.com/moapp/jyInfo/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- Webrpcport int64
- MysqlMain entity.MysqlMainStruct
- Redis entity.RedisStuct
- Nsq entity.NsqStruct
- SupplyTotal int
- Es entity.EsStruct
- Oss entity.OssStruct
- PublishCity map[string]string
- SupplyDay int64
- }
|