Helius
2021-02-26 9ef9c3117e0a2850972c13055d52b6a9a772ad86
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.matrix.codeGeneration.model;
 
import java.util.List;
 
/**
 * 代码文件模型
 * 
 * @author Matrix-J
 *
 */
public interface CodeModel {
    public List<CodeFile> buildCodeFile(OutDataSource dataSource);
 }