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