| | |
| | | package com.gkhy.exam.pay.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.exam.pay.dto.rep.NonCoalPayDetailH5RepDto; |
| | | import com.gkhy.exam.pay.dto.rep.NonCoalPayDetailRepDto; |
| | | import com.gkhy.exam.pay.dto.rep.NonCoalPayPageRepDto; |
| | | import com.gkhy.exam.pay.dto.rep.NonCoalPayStudentDetailRepDto; |
| | | import com.gkhy.exam.pay.dto.req.NonCoalPayReqDto; |
| | | import com.gkhy.exam.pay.dto.req.NonCoalPayTypeEditReqDto; |
| | | import com.gkhy.exam.pay.entity.NonCoalPay; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param id 【请填写功能名称】主键 |
| | | * @return 【请填写功能名称】 |
| | | */ |
| | | public NonCoalPay selectNonCoalPayById(Long id); |
| | | public NonCoalPayDetailRepDto selectNonCoalPayById(Long id); |
| | | |
| | | |
| | | List<NonCoalPayDetailH5RepDto> selectNonCoalPayByStu(String phone, String idCard); |
| | | |
| | | /** |
| | | * 查询【请填写功能名称】列表 |
| | |
| | | * @param nonCoalPay 【请填写功能名称】 |
| | | * @return 【请填写功能名称】集合 |
| | | */ |
| | | public List<NonCoalPay> selectNonCoalPayList(NonCoalPay nonCoalPay); |
| | | public List<NonCoalPayPageRepDto> selectNonCoalPayList(NonCoalPay nonCoalPay); |
| | | |
| | | NonCoalPayStudentDetailRepDto getNonCoalPayStudentByPayId(Long id); |
| | | |
| | | /** |
| | | * 新增【请填写功能名称】 |
| | |
| | | */ |
| | | public int updateNonCoalPay(NonCoalPayReqDto nonCoalPay); |
| | | |
| | | public int updateNonCoalPayType(NonCoalPayTypeEditReqDto nonCoalPay); |
| | | |
| | | public int updateNonCoalPayTypeStatus(int payPersonType, Long id); |
| | | |
| | | /** |
| | | * 批量删除【请填写功能名称】 |
| | | * |