You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.platform.service ;
import java.util.List ;
import java.util.Map ;
import com.platform.entities.SqlFileInfoEntity ;
public interface IScriptMakeService {
public int makeCfg ( ) throws Exception ;
public int makeXml ( ) throws Exception ;
public int moveFiles ( List < SqlFileInfoEntity > file ) throws Exception ;
public List < SqlFileInfoEntity > findAllFiles ( ) throws Exception ;
public Map < String , Object > readSql ( String name , SqlFileInfoEntity form ) ;
/**
* @param type 那种脚本( 3种脚本之一)
* @param opt 那种操作
* @param content 内容
* @param form 当前是那个系统
* @return
*/
public Map < String , Object > handleSqlFile ( String type , String opt , String content , SqlFileInfoEntity form ) ;
/** 一键审核
* @param forms
* @return
*/
public Map < String , Object > totalOnholeSqlFile ( List < SqlFileInfoEntity > forms ) ;
/** 一键审核
* @param forms
* @return
*/
public Map < String , Object > totalVerifySqlFile ( List < SqlFileInfoEntity > forms ) ;
}