| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface PaymentRecordMapper extends BaseMapper<PaymentRecord> { |
| | | |
| | |
| | | @Param("type") Integer type, @Param("orderId") Integer orderId, |
| | | @Param("orderType") Integer orderType, @Param("payType") Integer payType, |
| | | @Param("state") Integer state); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 导出 |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> exportRecord(@Param("userName") String userName,@Param("phone") String phone, |
| | | @Param("code") String code,@Param("startTime") String startTime,@Param("endTime") String endTime); |
| | | } |