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.
20 lines
537 B
20 lines
537 B
12 months ago
|
package com.teaching.backend.mapper.resource;
|
||
12 months ago
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.teaching.backend.model.entity.ResourceRelationship;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.tomcat.websocket.BackgroundProcess;
|
||
|
|
||
|
/**
|
||
|
* ClassName: ResourcesRelationshipMapper
|
||
|
* Package: com.teaching.backend.mapper
|
||
|
* Description:
|
||
|
*
|
||
|
* @Author 姜钧瀚
|
||
|
* @Create 2024/6/12 21:07
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface ResourcesRelationshipMapper extends BaseMapper<ResourceRelationship> {
|
||
|
}
|