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.
20 lines
519 B
20 lines
519 B
5 months ago
|
package club.service;
|
||
|
|
||
|
import club.pojo.Admins;
|
||
|
import com.github.pagehelper.PageInfo;
|
||
|
|
||
|
|
||
|
import club.pojo.Admins;
|
||
|
import com.github.pagehelper.PageInfo;
|
||
|
|
||
|
|
||
|
public interface AdminService {
|
||
|
PageInfo<Admins> adminPage(String adminName,Integer pageNum,Integer pageSize);
|
||
|
Admins findById(Integer id);
|
||
|
Admins login(String adminName, String adminPwd);
|
||
|
PageInfo<Admins> allAdmin(String adminsName, int pageNum, int pageSize);
|
||
|
int add(Admins admins);
|
||
|
int update(Admins admins);
|
||
|
int del(Integer id);
|
||
|
}
|