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.
22 lines
388 B
22 lines
388 B
/**
|
|
* @Title:
|
|
* @Description:
|
|
* @Author: Yuki Wong(iyuki0430@msn.com)
|
|
* @Update:
|
|
* @Date: 2020/7/20 11:50
|
|
* @File: AccountService.go
|
|
* @Software: GoLand
|
|
**/
|
|
package AccountService
|
|
|
|
import (
|
|
"dsSupport/MyModel/Account/AccountDAO"
|
|
)
|
|
|
|
func Login(username string, password string) (bool, string) {
|
|
result, message := AccountDAO.Login(username, password)
|
|
|
|
return result, message
|
|
}
|
|
|