You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
888 B

package com.cya.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.cya.entity.PunchClockRecord;
import com.cya.entity.Record;
import com.cya.entity.Student;
public interface IStudentMapper {
public List<Record>getRecordMsgByStuNum(@Param("filter") String filter,@Param("key")String key,@Param("studentNumber") String studentNumber);
public Student student_getMyMsgById(@Param("studentId") Integer studentId);
public void student_updateMyMsgById(Student student);
public void student_updatePsd(Student student);
public List<PunchClockRecord>getPunchClockRecordMsgByStuNum(@Param("filter") String filter,@Param("key")String key,@Param("studentNumber") String studentNumber);
public PunchClockRecord getPunckColcokRecordById(@Param("id")Integer id);
public void updataPunchClockRecordMsg(PunchClockRecord punchClockRecord);
}