1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.dg.core.db.gen.mapper;
|
| import com.dg.core.db.gen.entity.AutomessageTransactionEventInterview;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 办事指南访问表 Mapper 接口
| * </p>
| *
| * @author fengjin
| * @since 2022-09-26
| */
| public interface AutomessageTransactionEventInterviewMapper extends BaseMapper<AutomessageTransactionEventInterview> {
|
| }
|
|