StudentMapper.java 439 B

1234567891011121314151617181920
  1. package com.mirage.mirageservice.mapper.sqlserver;
  2. import com.mirage.mirageservice.domain.Student;
  3. /**
  4. * Created by hzlinhai on 2025/8/26.
  5. */
  6. public interface StudentMapper {
  7. int deleteByPrimaryKey(Integer id);
  8. int insert(Student record);
  9. int insertSelective(Student record);
  10. Student selectByPrimaryKey(Integer id);
  11. int updateByPrimaryKeySelective(Student record);
  12. int updateByPrimaryKey(Student record);
  13. }