Pu Zhibing
2025-02-25 a7dc3517b3c028eab02cdde35a57389278217ed2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.panzhihua.sangeshenbian.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.sangeshenbian.model.entity.SystemPost;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/25 19:42
 */
public interface ISystemPostService extends IService<SystemPost> {
    
    
    IPage<SystemPost> list(String name, Integer pageNum, Integer pageSize);
}