1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.oying.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.oying.domain.GenConfig;
|
| /**
| * @author Z
| * @date 2019-01-14
| */
| public interface GenConfigService extends IService<GenConfig> {
|
| /**
| * 查询表配置
| * @param tableName 表名
| * @return 表配置
| */
| GenConfig find(String tableName);
|
| /**
| * 更新表配置
| * @param tableName 表名
| * @param genConfig 表配置
| * @return 表配置
| */
| GenConfig update(String tableName, GenConfig genConfig);
| }
|
|