| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.pay.entity.NonCoalPayStudent; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author hh |
| | | * @date 2025-01-16 |
| | | */ |
| | | public interface NonCoalPayStudentMapper extends BaseMapper<NonCoalPayStudent> |
| | | { |
| | | public interface NonCoalPayStudentMapper extends BaseMapper<NonCoalPayStudent> { |
| | | /** |
| | | * 查询【请填写功能名称】 |
| | | * |
| | |
| | | */ |
| | | public int updateNonCoalPayStudent(NonCoalPayStudent nonCoalPayStudent); |
| | | |
| | | int updateNonCoalPayStudentType(@Param("id") Long id, @Param("updateBy") String updateBy); |
| | | |
| | | /** |
| | | * 删除【请填写功能名称】 |
| | | * |
| | | * @param id 【请填写功能名称】主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteNonCoalPayStudentById(Long id); |
| | | public int deleteNonCoalPayStudentById(@Param("id") Long id, @Param("updateBy") String updateBy); |
| | | |
| | | /** |
| | | * 批量删除【请填写功能名称】 |