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
437 B
17 lines
437 B
package com.teaching.backend.service.resource; |
|
|
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
import com.teaching.backend.model.entity.ResourceRelationship; |
|
|
|
|
|
/** |
|
* ClassName: ResourcesRelationshipService |
|
* Package: com.teaching.backend.service |
|
* Description: |
|
* |
|
* @Author 姜钧瀚 |
|
* @Create 2024/6/12 21:04 |
|
* @Version 1.0 |
|
*/ |
|
public interface ResourcesRelationshipService extends IService<ResourceRelationship> { |
|
}
|
|
|