1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yb.dao;
|
| import com.yb.entity.THistoryEntity;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| /**
| * ${comments}
| *
| * @author yw
| * @email leutu@qq.com
| * @date 2024-09-14 16:35:15
| */
| @Mapper
| public interface THistoryDao extends BaseMapper<THistoryEntity> {
|
| }
|
|