// Copyright 2019 getensh.com. All rights reserved. // Use of this source code is governed by getensh.com. package config type LogConfig struct { Path string Level string MaxSize int MaxBackups int MaxAge int Stacktrace bool } type MysqlConfig struct { User string Password string Addr string DB string Charset string MaxIdle int MaxConn int LogMode bool } type RedisConfig struct { Addrs []string Password string DB int PoolSize int MinIdleConns int MaxRetries int Cluster bool } type ElasticConfig struct { Addrs []string Sniff bool } type ThirdPartNode struct { Host string AppKey string AppSecret string } type AliPartNode struct { AesKey string } type ThirdPartyConfig struct { Ali AliPartNode } type RPCNode struct { ServiceName string ServicePort int ServiceIp string MysqlDb string RedisDb int LogLevel string LogStacktrace bool } type KeepaliveConfig struct { ClientTime int ClientTimeout int ServerTime int ServerTimeout int ServerMiniTime int } type OssConfig struct { Protocol string Endpoint string BrandBucket string Id string Key string PropertyCompanyBucket string PowerTempUrl string BuildingTempUrl string UnitTempUrl string HouseTempUrl string OpenimBucket string } type Coupon struct { Url string Action string ExpireDate string } type RPCConfig struct { Prefix string Keepalive KeepaliveConfig System RPCNode Common RPCNode Garden RPCNode Thirdparty RPCNode Household RPCNode PropertyLog RPCNode Device RPCNode } type GatewayConfig struct { AppKey string AppSecret string ServiceName string ServiceIp string ServicePort int MysqlDb string RedisDb int LogLevel string LogStacktrace bool } type JwtConfig struct { Secret string // 密钥 Issuer string // 发行人 Seconds int64 // 过期秒数 } type Configure struct { // 基础配置 K8s bool EtcdAddrs []string RunMode string Log LogConfig // 按需配置 Mysql MysqlConfig Redis RedisConfig Elastic ElasticConfig ThirdParty ThirdPartyConfig Oss OssConfig Jwt JwtConfig // 所要启用的服务 Rpc RPCConfig PropertySystemGateway GatewayConfig }