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.
12 lines
239 B
12 lines
239 B
1 year ago
|
package com.ch.ebusiness.repository.admin;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
import com.ch.ebusiness.entity.AUser;
|
||
|
@Repository
|
||
|
public interface AdminRepository {
|
||
|
List<AUser> login(AUser aUser);
|
||
|
}
|