15 lines
354 B
Java
15 lines
354 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.MessageCenter;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 消息中心
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-09-19 10:39:29
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface MessageCenterMapper extends BaseMapper<MessageCenter> {
|
||
|
|
|
||
|
|
}
|