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);
| }
|
|
|