package com.template.services;
import com.template.model.pojo.WelcomeAccount;
import com.template.model.pojo.WelcomeStudent;
import com.template.model.pojo.WelcomeStudent;
import com.baomidou.mybatisplus.extension.service.IService;
import com.template.model.result.PageUtils;
import com.template.model.vo.StudentPageVo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
*
* 服务类
*
*
* @author ceshi
* @since 2025-06-13
*/
public interface WelcomeStudentService extends IService {
int insertWelcomeStudent(WelcomeStudent rns);
int updateWelcomeStudent(WelcomeStudent rns);
int deleteWelcomeStudentById(Integer id);
WelcomeStudent getManageById(Integer id);
int existStudentInfo(String admissNum, String cardId);
WelcomeStudent getDataByIdcard(String cardId);
PageUtils queryStudentPageList(int currentPage, int pageCount, Integer collegeId, Integer majorId, Integer classstrId, String trafficMethod, String name);
WelcomeStudent getDataByIdcardOrNum(String admissNum, String cardId);
List queryStudentByCardId(List cardIds);
List queryStudentList(Integer collegeId, Integer majorId, Integer classstrId, String trafficMethod, String name);
}