forked from kidgrow-microservices-platform

dougang
2021-03-03 26d15716f44e8e936d8cd39e8027eaab4d3a8172
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
27
package com.kidgrow.generator.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.kidgrow.common.model.PageResult;
import org.springframework.stereotype.Service;
 
import java.util.List;
import java.util.Map;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/24 09:40 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Service
public interface SysGeneratorService extends IService {
     PageResult queryList(Map<String, Object> map);
 
     Map<String, String> queryTable(String tableName);
 
     List<Map<String, String>> queryColumns(String tableName);
 
     byte[] generatorCode(String[] tableNames);
}