You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wechatpayapiv3/get.go

40 lines
691 B

package wechatpayapiv3
import "go.dtapp.net/golog"
func (c *Client) GetAppId() string {
return c.config.appId
}
func (c *Client) GetAppSecret() string {
return c.config.appSecret
}
func (c *Client) GetMchId() string {
return c.config.mchId
}
func (c *Client) GetAesKey() string {
return c.config.aesKey
}
func (c *Client) GetApiV3() string {
return c.config.apiV3
}
func (c *Client) GetMchSslKey() string {
return c.config.mchSslKey
}
func (c *Client) GetMchSslSerialNo() string {
return c.config.mchSslSerialNo
}
func (c *Client) GetLogGorm() *golog.ApiClient {
return c.log.logGormClient
}
func (c *Client) GetLogMongo() *golog.ApiClient {
return c.log.logMongoClient
}