Files
nuttyreading-java/src/main/java/com/peanut/modules/book/service/PayPaymentOrderService.java
wangjinlei 3cef570c97 1
2024-03-15 10:19:03 +08:00

21 lines
473 B
Java

package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.common.utils.PageUtils;
import com.peanut.modules.common.entity.PayPaymentOrderEntity;
import java.util.Map;
/**
* 充值订单表
*
* @author yl
* @email yl328572838@163.com
* @date 2022-08-29 15:27:44
*/
public interface PayPaymentOrderService extends IService<PayPaymentOrderEntity> {
PageUtils queryPage(Map<String, Object> params);
}