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.
Flower/lyw/AdminRepository.java

12 lines
239 B

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);
}