1 Star 0 Fork 0

后端组/mvc

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
LoginService.go 1017 Bytes
一键复制 编辑 原始数据 按行查看 历史
heweiosc 提交于 2020-04-19 02:44 +08:00 . add services
package services
import "gitee.com/nuokwan_backend_group/mvc/Base"
type ILoginService interface {
Auth(string) Base.IReturnAble
LoginByEmail(email string, password string) Base.IReturnAble
LoginByMobile(mobile string, password string) Base.IReturnAble
LoginByMobileSmsCode(mobile string, code string) Base.IReturnAble
LoginByAccountPassword(username string, password string) Base.IReturnAble
}
type LoginService struct {
userService IUserService
}
func (l *LoginService) Auth(string) Base.IReturnAble {
panic("implement me")
}
func (l *LoginService) LoginByEmail(email string, password string) Base.IReturnAble {
panic("implement me")
}
func (l *LoginService) LoginByMobile(mobile string, password string) Base.IReturnAble {
panic("implement me")
}
func (l *LoginService) LoginByMobileSmsCode(mobile string, code string) Base.IReturnAble {
panic("implement me")
}
func (l *LoginService) LoginByAccountPassword(username string, password string) Base.IReturnAble {
panic("implement me")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nuokwan_backend_group/mvc.git
git@gitee.com:nuokwan_backend_group/mvc.git
nuokwan_backend_group
mvc
mvc
1bf86c47ef7b

搜索帮助