kongdeqiang
2024-03-22 76a01586b6308d0524a8ad744779f53c3c7f5792
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.boying.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.boying.entity.Statistic;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName StatisticMapper.java
 * @Description TODO
 * @createTime 2022年11月20日 10:16:00
 */
@Mapper
public interface StatisticMapper extends BaseMapper<Statistic> {
}