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
308 B
12 lines
308 B
package club.dao;
|
|
|
|
import club.pojo.AdoptAnimal;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
|
|
public interface AdoptAnimalMapper extends BaseMapper<AdoptAnimal> {
|
|
List<AdoptAnimal> all(@Param("adoptTime")String adoptTime);
|
|
|
|
}
|