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.
14 lines
373 B
14 lines
373 B
package com.example.demo.sevice;
|
|
|
|
|
|
import com.example.demo.domain.entity.User;
|
|
import com.example.demo.domain.vo.UserVo;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import java.util.List;
|
|
|
|
public interface UserSevice {
|
|
UserVo search(UserVo userVo) throws Exception;
|
|
PageInfo<User> searchForPage(Integer pageNum, Integer pageSize, User User);
|
|
List<String> area();
|
|
}
|