kongdeqiang
2025-02-21 15e5365f1a59fa0538fe4fcc71ef28a934f93f06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.boying.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.boying.entity.OutParkLog;
import com.boying.entity.PayLog;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName OutParkLogMapper.java
 * @Description TODO
 * @createTime 2023年12月12日 17:36:00
 */
@Mapper
public interface OutParkLogMapper extends BaseMapper<OutParkLog> {
}