Files
nuttyreading-java/src/main/java/com/peanut/modules/book/service/UserFollowUpService.java
2023-09-19 18:24:19 +08:00

12 lines
357 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.book.entity.UserFollowUpEntity;
import java.util.Map;
public interface UserFollowUpService extends IService<UserFollowUpEntity> {
PageUtils queryPage(Map<String, Object> params);
}