| | |
| | | package com.stylefeng.guns.modular.system.dao; |
| | | |
| | | import com.stylefeng.guns.modular.system.controller.resp.TRechargeRecordAgentResp; |
| | | import com.stylefeng.guns.modular.system.controller.resp.TRechargeRecordUserResp; |
| | | import com.stylefeng.guns.modular.system.model.TRechargeRecord; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * </p> |
| | | * |
| | | * @author stylefeng |
| | | * @since 2023-02-20 |
| | | * @since 2023-03-10 |
| | | */ |
| | | @Mapper |
| | | public interface TRechargeRecordMapper extends BaseMapper<TRechargeRecord> { |
| | | |
| | | /** |
| | | * 用户充值记录查询 |
| | | * @param userName 用户名 |
| | | * @param userPhone 用户手机号 |
| | | * @param code 流水号 |
| | | * @param startTime 开始时间 |
| | | * @param endTime 结束时间 |
| | | * @return List<TRechargeRecordUserResp> |
| | | */ |
| | | List<TRechargeRecordUserResp> userRecharge(@Param("startTime") String startTime, @Param("endTime")String endTime, @Param("userName")String userName, |
| | | @Param("userPhone")String userPhone, @Param("code")String code); |
| | | |
| | | List<TRechargeRecordAgentResp> agentRechargeList(@Param("startTime")String startTime, @Param("endTime")String endTime, @Param("driverName")String driverName, |
| | | @Param("driverPhone")String driverPhone, @Param("roleType")Integer roleType, @Param("objectId")Integer objectId); |
| | | } |