18 lines
401 B
Java
18 lines
401 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.peanut.modules.common.entity.PayPaymentOrderEntity;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 充值订单表
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-29 15:27:44
|
|
*/
|
|
@Mapper
|
|
public interface PayPaymentOrderDao extends BaseMapper<PayPaymentOrderEntity> {
|
|
|
|
}
|