12345678910111213141516171819202122 |
- package config
- import (
- "jyBXBase/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- Webrpcport int64
- BidSearchOldUserLimit int64
- FileSignBool bool
- UnitAppend string //数值单位后面的加号 写死的目前
- }
- type Db struct {
- Mysql entity.Mysql `json:"mysql"`
- Redis entity.RedisStuct `json:"redis"`
- Es entity.EsStruct `json:"es"`
- Mongo entity.Mongo `json:"mongo"`
- }
|