suerprisePlus
2024-09-04 85af9acfccf2e944a97557d3e46d143b0e99e2f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yb.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.yb.config.PageUtils;
import com.yb.entity.TMetaEntity;
 
import java.util.Map;
 
/**
 * ${comments}
 *
 * @author yw
 * @email leutu@qq.com
 * @date 2024-09-04 11:00:45
 */
public interface TMetaService extends IService<TMetaEntity> {
 
 
    PageUtils queryPage(Map<String, Object> params);
    PageUtils query(Map<String, Object> params);
}