Documentation
¶
Index ¶
- type AliApiConfig
- type AliIotConfig
- type AliOssConfig
- type AliPayConfig
- type AliRamConfig
- type AliSmsConfig
- type AmapConfig
- type AppProfile
- type BaseConfig
- type CheckStart
- type EsConfig
- type ExchangeType
- type HttpConfig
- type KookConfig
- type MysqlConfig
- type PostgresConfig
- type ProjectConfig
- type RabbitMQConfig
- type RedisConfig
- type RepoConfig
- type TcpConfig
- type ViperConfig
- type VolcengineConfig
- type WechatMiniConfig
- type WechatOaConfig
- type WechatOpenConfig
- type WechatPayConfigV2
- type WechatPayConfigV3
- type YunxinConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AliApiConfig ¶
AliApiConfig 阿里云市场提供的服务的基本配置
type AliIotConfig ¶
type AliIotConfig struct {
AccessKeyID string `gorm:"column:oss_access_key_id;type:varchar(128)" json:"oss_access_key_id"` // 【OSS】密钥ID
AccessKeySecret string `gorm:"column:oss_access_key_secret;type:varchar(128)" json:"oss_access_key_secret"` // 【OSS】密钥
EndPoint string `gorm:"end_point;type:varchar(128)" json:"end_point"` // 公网终端节点(Endpoint)
RegionID string `gorm:"region_id;type:varchar(128)" json:"region_id"` // 阿里云服务地域代码,华东2 = cn-shanghai https://help.aliyun.com/document_detail/40654.htm?spm=a2c4g.11186623.0.0.72a72860LhLa4y#concept-2459516
}
AliIotConfig 阿里云物联网的基本配置(每个实例单独放) 因为一个项目用的服务器基本上是一个区域,一个账户,所以以下属性是公用的
type AliOssConfig ¶
type AliOssConfig struct {
AccessKeyID string `gorm:"column:oss_access_key_id;type:varchar(128)" json:"oss_access_key_id"` // 【OSS】密钥ID
AccessKeySecret string `gorm:"column:oss_access_key_secret;type:varchar(128)" json:"oss_access_key_secret"` // 【OSS】密钥
Host string `gorm:"column:oss_host;type:varchar(128)" json:"oss_host"` // 【OSS】域名
EndPoint string `gorm:"column:oss_end_point;type:varchar(128)" json:"oss_end_point"` // 【OSS】端
BucketName string `gorm:"column:oss_bucket_name;type:varchar(128)" json:"oss_bucket_name"` // 【OSS】bucket名称
ARN string `gorm:"arn" json:"arn"` // 【OSS】https://help.aliyun.com/document_detail/39744.htm?spm=a2c4g.11186623.0.0.7596397e6qkBNp#section-qbw-mhy-173
ExpireTime int64 // 上传策略Policy的失效时间,单位为秒。默认30
}
AliOssConfig oss参数
type AliPayConfig ¶
type AliPayConfig struct {
AppID string `gorm:"column:alipay_app_id" json:"alipay_app_id"` //【支付宝】appID
PrivateKey string `gorm:"column:alipay_private_key" json:"alipay_private_key"` //【支付宝】密钥(PKCS1)
AppCertPublicKey string `gorm:"column:app_cert_public_key" json:"app_cert_public_key"` //【支付宝】应用公钥证书 appCertPublicKey.crt
RootCert string `gorm:"column:root_cert" json:"root_cert"` //【支付宝】支付宝根证书 alipayRootCert.crt
CertPublicKey string `gorm:"column:cert_public_key" json:"cert_public_key"` //【支付宝】支付宝公钥证书 alipayCertPublicKey_RSA2.crt
NotifyURL string // 【支付宝】回调地址
Debug bool // 【支付宝】是否是调试模式
}
AliPayConfig 支付宝参数
type AliRamConfig ¶
type AliRamConfig struct {
AccessKeyID string `gorm:"column:oss_access_key_id;type:varchar(128)" json:"oss_access_key_id"` // 【OSS】密钥ID
AccessKeySecret string `gorm:"column:oss_access_key_secret;type:varchar(128)" json:"oss_access_key_secret"` // 【OSS】密钥
}
AliRamConfig 阿里云RAM访问控制的账号和密码
type AliSmsConfig ¶
type AliSmsConfig struct {
AccessKeyID string `gorm:"column:oss_access_key_id;type:varchar(128)" json:"oss_access_key_id"` // 【OSS】密钥ID
AccessKeySecret string `gorm:"column:oss_access_key_secret;type:varchar(128)" json:"oss_access_key_secret"` // 【OSS】密钥
}
AliSmsConfig 阿里云短信服务的配置
type AppProfile ¶
type AppProfile struct {
Domain string // 外部域名地址
Host string // 本地host地址
Port string // 本地的端口号
Debug bool // 是否调试模式
No string
Name string
Version string
}
AppProfile App资料
type BaseConfig ¶
type BaseConfig struct {
Profile *AppProfile
Location *time.Location `gorm:"-" json:"-"` // 时区
MysqlConfig *MysqlConfig // 数据库设定
PostgresConfig *PostgresConfig // Postgres 设定
RedisConfig *RedisConfig // redis设定
EsConfig *EsConfig // es设定
RabbitMQConfig *RabbitMQConfig // es设定
WechatMiniConfig *WechatMiniConfig // 小程序设定
WechatOaConfig *WechatOaConfig // 公众号设定
WechatOpenConfig *WechatOpenConfig // 开放平台设定
WechatPayConfigV3 *WechatPayConfigV3 // V3微信支付设定
WechatPayConfigV2 *WechatPayConfigV2 // V2微信支付设定
AliPayConfig *AliPayConfig // 支付宝设定
AliApiConfig *AliApiConfig // 阿里云APi市场设定
AliSmsConfig *AliSmsConfig // 阿里云短信服务设定
AliIotConfig *AliIotConfig // 阿里云物联网市场设定
AliOssConfig *AliOssConfig // 阿里云oss对象存储设定
AmapConfig *AmapConfig // 高德地图设定
YunxinConfig *YunxinConfig // 网易云信设定
}
BaseConfig 参数
type CheckStart ¶
CheckStart 约定启动时要验证的项目
type EsConfig ¶
type EsConfig struct {
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
}
EsConfig elastic search 设置
type ExchangeType ¶
type ExchangeType string
RabbitMQ Exchange 类型
const ( Fanout ExchangeType = "fanout" Direct ExchangeType = "direct" Topic ExchangeType = "topic" XDelayedMessage ExchangeType = "x-delayed-message" DeadLetterDelay ExchangeType = "dead_letter_delay" )
type HttpConfig ¶
type KookConfig ¶
type MysqlConfig ¶
type MysqlConfig struct {
Host string `gorm:"column:db_host" json:"host"`
Port string `gorm:"column:db_host" json:"port"`
Username string `gorm:"column:db_account" json:"username"`
Password string `gorm:"column:db_password" json:"password"`
DbName string `gorm:"column:db_name" json:"db_name"`
Charset string
Collation string
MaxOpenConns int `json:"max_open_conns"` // 默认10
MaxIdle int `json:"max_idle"` // 默认5
MaxLifeTime int `json:"max_life_time"` // 最长生命周期(秒) 默认60
SettingTableName string `gorm:"column:setting_table_name" json:"setting_table_name"` // 设置表的表名
TimeZone string // 时区
ParseTime bool
Logger logger.Interface
}
MysqlConfig mysql数据库参数
type PostgresConfig ¶
type ProjectConfig ¶
type ProjectConfig interface {
Build(baseConfig *BaseConfig) error // 构建参数
}
type RabbitMQConfig ¶
type RabbitMQConfig struct {
Host string `json:"host"`
Username string `json:"username"`
Password string `json:"password"`
}
RabbitMQConfig rabbit mq配置
type RedisConfig ¶
type RedisConfig struct {
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
IdleTimeout int `json:"idle_timeout"` // 默认60
Database int `json:"datebase"` // 默认0
MaxActive int `json:"max_active"` // 默认10
MaxIdle int `json:"max_idle"` // 默认10
}
RedisConfig redis服务器设置
type RepoConfig ¶
type ViperConfig ¶
type VolcengineConfig ¶
VolcengineConfig 火山引擎
type WechatMiniConfig ¶
type WechatMiniConfig struct {
AppID string `gorm:"column:wechat_mini_app_id" json:"wechat_mini_app_id"`
AppSecret string `gorm:"column:wechat_mini_app_secret" json:"wechat_mini_app_secret"`
}
WechatMiniConfig 微信小程序参数
type WechatOaConfig ¶
type WechatOaConfig struct {
AppID string `gorm:"column:wechat_oa_app_id" json:"wechat_oa_app_id"`
AppSecret string `gorm:"column:wechat_oa_app_secret" json:"wechat_oa_app_secret"`
Token string `gorm:"column:token" json:"token"`
EncodingAESKey string `gorm:"column:encoding_aes_key" json:"encoding_aes_key"`
}
WechatOaConfig 微信公众号参数
type WechatOpenConfig ¶
type WechatOpenConfig struct {
AppID string `gorm:"column:wechat_oa_app_id" json:"wechat_oa_app_id"`
AppSecret string `gorm:"column:wechat_oa_app_secret" json:"wechat_oa_app_secret"`
}
WechatOpenConfig 微信开放平台参数
type WechatPayConfigV2 ¶
type WechatPayConfigV2 struct {
AppID string `gorm:"column:wechat_pay_app_id" json:"app_id"` //【微信支付】appID
ApiKey string `gorm:"column:wechat_api_key" json:"api_key"` //【微信支付】apiKey(v2)
MchID string `gorm:"column:wechat_pay_mch_id" json:"mch_id"` //【微信支付】商户ID 或者服务商模式的 sp_mchid
CertURI string `gorm:"column:wechat_pay_cert_uri" json:"cert_uri"` //【微信支付】公钥文件
KeyURI string `gorm:"column:wechat_pay_key_uri" json:"key_uri"` //【微信支付】私钥文件
CertSerialNo string `gorm:"column:cert_serial_mo" json:"cert_serial_mo"` //【微信支付】证书序列号(V3使用)
NotifyURL string `gorm:"column:notify_url" json:"notify_url"` // 【微信支付】支付回调地址
RefundNotifyURL string `gorm:"column:refund_notify_url" json:"refund_notify_url"` // 【微信支付】退款回调地址
Debug bool `gorm:"column:debug" json:"debug"` // 【微信支付】是否是调试模式
P12CertFilePath string `gorm:"column:p12_cert_file_path" json:"p12_cert_file_path"` // apiclient_cert.p12的路径
}
WechatPayConfigV2 V2微信支付参数
type WechatPayConfigV3 ¶
type WechatPayConfigV3 struct {
AppID string `gorm:"column:wechat_pay_app_id" json:"app_id"` //【微信支付】appID
ApiKeyV3 string `gorm:"column:wechat_api_key_v3" json:"api_key_v3"` //【微信支付】apiKey,apiV3Key(v3)
MchID string `gorm:"column:wechat_pay_mch_id" json:"mch_id"` //【微信支付】商户ID 或者服务商模式的 sp_mchid
CertURI string `gorm:"column:wechat_pay_cert_uri" json:"cert_uri"` //【微信支付】公钥文件
KeyURI string `gorm:"column:wechat_pay_key_uri" json:"key_uri"` //【微信支付】私钥文件
CertSerialNo string `gorm:"column:cert_serial_mo" json:"cert_serial_mo"` //【微信支付】证书序列号(V3使用)
NotifyURL string `gorm:"column:notify_url" json:"notify_url"` // 【微信支付】支付回调地址
RefundNotifyURL string `gorm:"column:refund_notify_url" json:"refund_notify_url"` // 【微信支付】退款回调地址
MerchantTransferNotifyURL string `gorm:"column:merchant_transfer_notify_url" json:"merchant_transfer_notify_url"` // 【微信支付】商家转账回调地址
Debug bool `gorm:"column:debug" json:"debug"` // 【微信支付】是否是调试模式
PEMCertContent string `gorm:"column:pem_cert_content" json:"pem_cert_content"` //【微信支付】证书pem格式(apiclient_cert.pem) 从apiclient_cert.p12中导出证书部分的文件,为pem格式,请妥善保管不要泄漏和被他人复制 部分开发语言和环境,不能直接使用p12文件,而需要使用pem,所以为了方便您使用,已为您直接提供
PEMPrivateKeyContent string `gorm:"column:pem_private_key_content" json:"pem_private_key_content"` //【微信支付】证书密钥pem格式(apiclient_key.pem) 从apiclient_cert.p12中导出密钥部分的文件,为pem格式 部分开发语言和环境,不能直接使用p12文件,而需要使用pem,所以为了方便您使用,已为您直接提供
}
WechatPayConfigV3 V3微信支付参数
type YunxinConfig ¶
type YunxinConfig struct {
AppKey string `gorm:"column:app_key;type:varchar(128)" json:"app_key"` // 【云信】密钥
AppSecret string `gorm:"column:app_secret;type:varchar(128)" json:"app_secret"` // 【云信】密钥
CCURL string `gorm:"column:cc_url;type:varchar(128)" json:"cc_url"` // 信息抄送地址
}
YunxinConfig 网易云信
Click to show internal directories.
Click to hide internal directories.