教育训练处考试制证系统后端
“djh”
2025-01-23 5be0be6c58130b6c8a638baaac04481f756adf15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}