You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
Java
16 lines
286 B
Java
1 year ago
|
package com.glxp.api.dao.system;
|
||
|
|
||
|
import com.glxp.api.entity.system.SysMsgTodoEntity;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* 针对表【sys_msg_todo】的数据库操作Mapper
|
||
|
*/
|
||
|
public interface SysMsgTodoMapper extends BaseMapper<SysMsgTodoEntity> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|