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.
17 lines
292 B
17 lines
292 B
3 years ago
|
package com.zh.project0512.mapper;
|
||
|
|
||
|
import com.zh.project0512.model.TeachingRefe;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author zh
|
||
|
* @since 2022-06-14
|
||
|
*/
|
||
|
public interface TeachingRefeMapper extends BaseMapper<TeachingRefe> {
|
||
|
|
||
|
}
|