支付模块
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
594 B

  1. package md
  2. import "time"
  3. //数据库配置结构体
  4. type DBCfg struct {
  5. Host string `yaml:"host"` //ip及端口
  6. Name string `yaml:"name"` //库名
  7. User string `yaml:"user"` //用户
  8. Psw string `yaml:"psw"` //密码
  9. ShowLog bool `yaml:"show_log"` //是否显示SQL语句
  10. MaxLifetime time.Duration `yaml:"max_lifetime"`
  11. MaxOpenConns int `yaml:"max_open_conns"`
  12. MaxIdleConns int `yaml:"max_idle_conns"`
  13. Path string `yaml:"path"` //日志文件存放路径
  14. }