parent
8a8e52357d
commit
a1363a3484
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,53 @@
|
||||
package com.platform.entities;
|
||||
|
||||
public class MyFileEntity {
|
||||
|
||||
private String fileName;
|
||||
|
||||
private String lastTime;
|
||||
|
||||
private String filePath;
|
||||
|
||||
/**
|
||||
* @return the fileName
|
||||
*/
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fileName the fileName to set
|
||||
*/
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the lastTime
|
||||
*/
|
||||
public String getLastTime() {
|
||||
return lastTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param lastTime the lastTime to set
|
||||
*/
|
||||
public void setLastTime(String lastTime) {
|
||||
this.lastTime = lastTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the filePath
|
||||
*/
|
||||
public String getFilePath() {
|
||||
return filePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param filePath the filePath to set
|
||||
*/
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,37 +0,0 @@
|
||||
package com.platform.entities;
|
||||
|
||||
public class PreDataInfoFull extends PreDataInfo {
|
||||
|
||||
private String sysCode;
|
||||
|
||||
private String updateTime;
|
||||
|
||||
/**
|
||||
* @return the sysCode
|
||||
*/
|
||||
public String getSysCode() {
|
||||
return sysCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param sysCode the sysCode to set
|
||||
*/
|
||||
public void setSysCode(String sysCode) {
|
||||
this.sysCode = sysCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the updateTime
|
||||
*/
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param updateTime the updateTime to set
|
||||
*/
|
||||
public void setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
package com.platform.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.platform.entities.MyFileEntity;
|
||||
|
||||
public interface IScriptMakeService {
|
||||
|
||||
public int makeCfg() throws Exception;
|
||||
|
||||
public int makeXml() throws Exception;
|
||||
|
||||
public int moveFiles(MyFileEntity file) throws Exception;
|
||||
|
||||
public List<MyFileEntity> FindFiles() throws Exception;
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue