Files
nuttyreading-java/src/main/java/com/peanut/modules/book/service/UserFollowUpService.java
wangjinlei 3cef570c97 1
2024-03-15 10:19:03 +08:00

12 lines
359 B
Java

package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.common.utils.PageUtils;
import com.peanut.modules.common.entity.UserFollowUpEntity;
import java.util.Map;
public interface UserFollowUpService extends IService<UserFollowUpEntity> {
PageUtils queryPage(Map<String, Object> params);
}