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.
18 lines
337 B
18 lines
337 B
1 year ago
|
package com.teaching.backend.service.courses;
|
||
|
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.teaching.backend.model.entity.courses.ObjectiveContents;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 服务类
|
||
|
* </p>
|
||
|
*
|
||
|
* @author zjh
|
||
|
* @since 2024-06-05
|
||
|
*/
|
||
|
public interface IObjectiveContentsService extends IService<ObjectiveContents> {
|
||
|
|
||
|
}
|