package com.ycl.jxkg.service;
|
|
import com.ycl.jxkg.base.Result;
|
import com.ycl.jxkg.domain.vo.admin.education.EducationResourceVO;
|
import com.ycl.jxkg.domain.vo.student.education.StudentOnlineVO;
|
|
import java.util.List;
|
|
/**
|
* @author:flq
|
* @date:2024/6/18 10:53
|
*/
|
public interface EducationResourceService {
|
|
Result add(EducationResourceVO form);
|
|
|
Result update(EducationResourceVO form);
|
|
|
Result remove(List<Integer> ids);
|
|
|
Result page(EducationResourceVO query);
|
|
/**
|
* 学生端分页查询
|
*
|
* @param query
|
* @return
|
*/
|
Result studentPage(EducationResourceVO query);
|
|
/**
|
* 学习类型list
|
*
|
* @return
|
*/
|
Result typeList();
|
}
|