Helius
2021-02-26 de04085526eda992155716eda98af621ad681e4e
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);
 }