| 1234567891011121314151617181920 |
- package com.mirage.mirageservice.mapper.sqlserver;
- import com.mirage.mirageservice.domain.Student;
- /**
- * Created by hzlinhai on 2025/8/26.
- */
- public interface StudentMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(Student record);
- int insertSelective(Student record);
- Student selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(Student record);
- int updateByPrimaryKey(Student record);
- }
|