mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-12-26 03:52:24 +08:00
16 lines
294 B
Go
16 lines
294 B
Go
package service
|
|
|
|
import "merchant/models/fast"
|
|
|
|
type AccountService struct {
|
|
BaseService
|
|
}
|
|
|
|
func (c *AccountService) GetAccountInfo(userName string) *fast.RpAccount {
|
|
userInfo := fast.GetUserInfoByUserName(userName)
|
|
|
|
accountInfo := fast.GetAccontInfo(userInfo.UserNo)
|
|
|
|
return accountInfo
|
|
}
|