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
330 B
17 lines
330 B
1 year ago
|
package com.teaching.backend.service.know;
|
||
|
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.teaching.backend.model.entity.know.KnowRelationship;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 服务类
|
||
|
* </p>
|
||
|
*
|
||
|
* @author author
|
||
|
* @since 2024-06-20
|
||
|
*/
|
||
|
public interface IKnowRelationshipService extends IService<KnowRelationship> {
|
||
|
}
|