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.
wechatpayopen/get.go

36 lines
607 B

2 years ago
package wechatpayopen
2 years ago
import "go.dtapp.net/golog"
2 years ago
func (c *Client) GetSpAppid() string {
2 years ago
return c.config.spAppid
2 years ago
}
func (c *Client) GetSpMchId() string {
2 years ago
return c.config.spMchId
2 years ago
}
func (c *Client) GetSubAppid() string {
2 years ago
return c.config.subAppid
2 years ago
}
func (c *Client) GetSubMchId() string {
2 years ago
return c.config.subMchId
}
func (c *Client) GetMchSslKey() string {
return c.config.mchSslKey
}
func (c *Client) GetMchSslSerialNo() string {
return c.config.mchSslSerialNo
2 years ago
}
func (c *Client) GetApiV3() string {
return c.config.apiV3
}
2 years ago
2 years ago
func (c *Client) GetLog() *golog.ApiClient {
2 years ago
return c.log.client
2 years ago
}