StudentService.java
671 Bytes
package com.meishu.service;
import com.meishu.dto.student.LoginDTO;
import com.meishu.model.StudentDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.vo.student.LoginVO;
import org.apache.commons.lang3.StringUtils;
import java.util.List;
/**
* <p>
* 学生表 服务类
* </p>
*
* @author Tuyp
* @since 2023-07-11
*/
public interface StudentService extends IService<StudentDO> {
LoginVO login(LoginDTO loginDTO)throws Exception;
List<StudentDO> students(StudentDO studentDO);
String deleteStudent(StudentDO studentDO);
String updateStudent(StudentDO studentDO);
String addStudent(StudentDO studentDO);
}