package com.boying.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.boying.entity.PaymentLog;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName PaymentLogMapper.java
|
* @Description TODO
|
* @createTime 2023年12月12日 17:36:00
|
*/
|
@Mapper
|
public interface PaymentLogMapper extends BaseMapper<PaymentLog> {
|
}
|