xiangpei
2024-06-26 44aaa355ecf9430f8b182654d03c2914287bcba6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 byType(StudentOnlineVO query);
 
    /**
     * 学习类型list
     *
     * @return
     */
    Result typeList();
}