mirror of
https://github.com/suyiiyii/SIMS.git
synced 2025-07-15 19:43:01 +08:00
16 lines
380 B
Java
16 lines
380 B
Java
package top.suyiiyii.sims.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import top.suyiiyii.sims.entity.Notification;
|
|
|
|
/**
|
|
* @Author tortoise
|
|
* @Date 2024/9/8 20:50
|
|
* @PackageName:top.suyiiyii.sims.mapper
|
|
* @ClassName: MpNotificationMapper
|
|
* @Description: TODO
|
|
* @Version 1.0
|
|
*/
|
|
public interface MpNotificationMapper extends BaseMapper<Notification> {
|
|
}
|