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.
16 lines
330 B
16 lines
330 B
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> { |
|
}
|
|
|