教育训练处考试制证系统后端
“djh”
2025-02-20 4bfab467a5645b9b0595ed4e2ee5970f0a449446
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
26
27
28
29
30
31
32
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);
 
    void updateByCoalPayIdAndStatus(CoalPayStudent payStudent);
 
    void updateByIdAndPayType(CoalPayStudent payStudent);
 
}