注册用户

This commit is contained in:
2023-12-20 22:06:44 +08:00
parent 09165ec608
commit 745a9cb669
7 changed files with 121 additions and 5 deletions

View File

@@ -1,9 +1,12 @@
package com.lovenav.dao;
import com.lovenav.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@Repository
@Mapper
public interface UserDao {
int deleteByPrimaryKey(Integer id);
@@ -17,6 +20,8 @@ public interface UserDao {
int updateByPrimaryKey(User record);
User selectByEmail(String user_email);
User selectByUserLogin(String user_Login);
}