|
|
@ -3,7 +3,9 @@ package com.hzu.bookingsystem.repository;
|
|
|
|
|
|
|
|
|
|
|
|
import com.hzu.bookingsystem.bean.User;
|
|
|
|
import com.hzu.bookingsystem.bean.User;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* author 吴志岳
|
|
|
|
|
|
|
|
*/
|
|
|
|
public interface UserRepository extends JpaRepository<User,String> {
|
|
|
|
public interface UserRepository extends JpaRepository<User,String> {
|
|
|
|
User findByUId(Integer uId);
|
|
|
|
User findByUId(Integer uId);
|
|
|
|
|
|
|
|
|
|
|
|