潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.infra.service.demo;
H 2
3 import java.util.*;
4 import javax.validation.*;
5 import com.iailab.module.infra.controller.admin.demo.vo.*;
6 import com.iailab.module.infra.dal.dataobject.demo.InfraStudentDO;
7 import com.iailab.framework.common.pojo.PageResult;
8 import com.iailab.framework.common.pojo.PageParam;
9
10 /**
11  * 学生 Service 接口
12  *
13  * @author iailab
14  */
15 public interface InfraStudentService {
16
17     /**
18      * 创建学生
19      *
20      * @param createReqVO 创建信息
21      * @return 编号
22      */
23     Long createStudent(@Valid InfraStudentSaveReqVO createReqVO);
24
25     /**
26      * 更新学生
27      *
28      * @param updateReqVO 更新信息
29      */
30     void updateStudent(@Valid InfraStudentSaveReqVO updateReqVO);
31
32     /**
33      * 删除学生
34      *
35      * @param id 编号
36      */
37     void deleteStudent(Long id);
38
39     /**
40      * 获得学生
41      *
42      * @param id 编号
43      * @return 学生
44      */
45     InfraStudentDO getStudent(Long id);
46
47     /**
48      * 获得学生分页
49      *
50      * @param pageReqVO 分页查询
51      * @return 学生分页
52      */
53     PageResult<InfraStudentDO> getStudentPage(InfraStudentPageReqVO pageReqVO);
54
55 }