package com.gkhy.exam.pay.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.pay.dto.req.CoalPayStudentReq; import com.gkhy.exam.pay.entity.CoalPayStudent; import org.apache.ibatis.annotations.Param; import java.util.ArrayList; import java.util.List; public interface CoalPayStudentMapper extends BaseMapper { List selectByCoalPayId(Long coalPayId); int updateByIds(Long[] ids); List selectByCoalPayIdAndPayStatus(@Param("id") Long id, @Param("status") int status); List selectByIds(Long[] ids); List selectByIdcard(CoalPayStudentReq coalPayStudent); int updateCoalPayStudentById(CoalPayStudent coalPayStudent); int insertCoalPayStudent(CoalPayStudent coalPayStudent); }