| | |
| | | package com.gkhy.exam.pay.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.pay.dto.rep.CoalPayRepDto; |
| | | import com.gkhy.exam.pay.dto.req.CoalPayDto; |
| | | import com.gkhy.exam.pay.dto.req.CoalPayReq; |
| | | import com.gkhy.exam.pay.dto.req.CoalPayTypeReq; |
| | |
| | | import java.util.List; |
| | | |
| | | public interface CoalPayMapper extends BaseMapper<CoalPay> { |
| | | List<CoalPay> selectCoalPayList(CoalPayReq coalPay); |
| | | List<CoalPayRepDto> selectCoalPayList(CoalPayReq coalPay); |
| | | |
| | | int insertBath(CoalPay coalPay); |
| | | |