xin.altitude.cms.code.service.join.IOne2MoreVoService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucode-cms-code Show documentation
Show all versions of ucode-cms-code Show documentation
Java知识图谱之内容管理系统(CMS)代码自动生成部分
/*
* Copyright (Java知识图谱) 2022.
*/
package xin.altitude.cms.code.service.join;
import org.apache.velocity.VelocityContext;
import xin.altitude.cms.code.domain.KeyColumnUsage;
import java.util.List;
/**
* @author explore
* @since 2019/12/03 16:56
**/
public interface IOne2MoreVoService {
String realtimePreview(String tableName, KeyColumnUsage keyColumnUsage, VelocityContext context);
void writeToLocalFile(String tableName, String className, KeyColumnUsage keyColumnUsage);
VelocityContext createContext(String tableName, KeyColumnUsage keyColumnUsage);
List getImportList(String tableName);
}