You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
263 B
11 lines
263 B
11 months ago
|
package com.teaching.backend.mapper.know;
|
||
11 months ago
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
11 months ago
|
import com.teaching.backend.model.entity.know.Know;
|
||
11 months ago
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
@Mapper
|
||
|
public interface KnowMapper extends BaseMapper<Know> {
|
||
11 months ago
|
|
||
11 months ago
|
}
|