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
411 B
12 lines
411 B
8 months ago
|
package club.service;
|
||
|
|
||
|
import club.pojo.AdoptAnimal;
|
||
|
import com.github.pagehelper.PageInfo;
|
||
|
|
||
|
public interface AdoptAnimalService {
|
||
|
Integer create(AdoptAnimal adoptAnimal);
|
||
|
PageInfo<AdoptAnimal> all(String adoptTime,Integer pageNum, Integer pageSize);
|
||
|
int update(Integer id, Integer state);
|
||
|
PageInfo<AdoptAnimal> allAdoptAnimal(String userName,Integer pageNum,Integer pageSize, Integer state);
|
||
|
}
|