1
2
3
4
5
6
7
8
9
10
11
12
| package com.zbkj.service.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.zbkj.common.model.system.SystemNotification;
|
| /**
| * 通知设置表 Mapper 接口
|
| */
| public interface SystemNotificationDao extends BaseMapper<SystemNotification> {
|
| }
|
|