seatonwan9
2025-08-19 84c6e1df4b6bd48ee0517a33778b514008022875
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.webmanage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.webmanage.common.PageResult;
import com.webmanage.dto.PointsMainQueryDTO;
import com.webmanage.entity.Points;
 
/**
 * 积分主表Service接口
 */
public interface PointsService extends IService<Points> {
    
    /**
     * 分页查询积分主表
     */
    PageResult<Points> getPointsMainPage(PointsMainQueryDTO queryDTO);
}