1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package jnpf.base.mapper;
|
| import jnpf.base.entity.SystemShareEntity;
|
|
| /**
| * 跨应用数据mapper
| *
| * @author JNPF开发平台组
| * @version v6.1.0
| * @copyright 引迈信息技术有限公司
| * @date 2025/7/30 16:22:57
| */
| public interface SystemShareMapper extends SuperMapper<SystemShareEntity> {
|
| }
|
|