houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.iailab.module.infra.service.demo;
 
import java.util.*;
import javax.validation.*;
import com.iailab.module.infra.controller.admin.demo.vo.*;
import com.iailab.module.infra.dal.dataobject.demo.InfraStudentDO;
import com.iailab.module.infra.dal.dataobject.demo.InfraStudentContactDO;
import com.iailab.module.infra.dal.dataobject.demo.InfraStudentTeacherDO;
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.common.pojo.PageParam;
 
/**
 * 学生 Service 接口
 *
 * @author iailab
 */
public interface InfraStudentService {
 
    /**
     * 创建学生
     *
     * @param createReqVO 创建信息
     * @return 编号
     */
    Long createStudent(@Valid InfraStudentSaveReqVO createReqVO);
 
    /**
     * 更新学生
     *
     * @param updateReqVO 更新信息
     */
    void updateStudent(@Valid InfraStudentSaveReqVO updateReqVO);
 
    /**
     * 删除学生
     *
     * @param id 编号
     */
    void deleteStudent(Long id);
 
    /**
     * 获得学生
     *
     * @param id 编号
     * @return 学生
     */
    InfraStudentDO getStudent(Long id);
 
    /**
     * 获得学生分页
     *
     * @param pageReqVO 分页查询
     * @return 学生分页
     */
    PageResult<InfraStudentDO> getStudentPage(InfraStudentPageReqVO pageReqVO);
 
    // ==================== 子表(学生联系人) ====================
 
    /**
     * 获得学生联系人列表
     *
     * @param studentId 学生编号
     * @return 学生联系人列表
     */
    List<InfraStudentContactDO> getStudentContactListByStudentId(Long studentId);
 
    // ==================== 子表(学生班主任) ====================
 
    /**
     * 获得学生班主任
     *
     * @param studentId 学生编号
     * @return 学生班主任
     */
    InfraStudentTeacherDO getStudentTeacherByStudentId(Long studentId);
 
}