mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-21 10:46:40 +08:00
14 lines
288 B
Java
14 lines
288 B
Java
package com.ruoyi.system.mapper;
|
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysNotice;
|
|
|
|
/**
|
|
* 通知公告表 数据层
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
public interface SysNoticeMapper extends BaseMapperPlus<SysNoticeMapper, SysNotice, SysNotice> {
|
|
|
|
}
|