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<CoalPayStudent> {
|
List<CoalPayStudent> selectByCoalPayId(Long coalPayId);
|
|
int updateByIds(Long[] ids);
|
|
List<CoalPayStudent> selectByCoalPayIdAndPayStatus(@Param("id") Long id, @Param("status") int status);
|
|
List<CoalPayStudent> selectByIds(Long[] ids);
|
|
List<CoalPayStudent> selectByIdcard(CoalPayStudentReq coalPayStudent);
|
|
int updateCoalPayStudentById(CoalPayStudent coalPayStudent);
|
|
int insertCoalPayStudent(CoalPayStudent coalPayStudent);
|
|
void updateByCoalPayId(CoalPayStudent coalPayStudent);
|
|
}
|