aris数据迁移提取到单独目录
This commit is contained in:
parent
03793a6d5f
commit
ad7ddb6b38
Binary file not shown.
@ -10,6 +10,15 @@ import com.actionsoft.bpms.server.bind.annotation.Mapping;
|
||||
@Controller
|
||||
public class DataMigrationController {
|
||||
|
||||
/**
|
||||
* 数据迁移
|
||||
* @param uc
|
||||
* @param wsId
|
||||
* @param groupValue
|
||||
* @param fileValue
|
||||
* @param fileName
|
||||
* @return
|
||||
*/
|
||||
@Mapping("com.actionsoft.apps.coe.pal.datamigration_data_migrate")
|
||||
public String dataMigrate(UserContext uc, String wsId,String groupValue,String fileValue,String fileName) {
|
||||
return new DataMigrationWeb(uc).dataMigrate(wsId,groupValue,fileValue,fileName);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -94,15 +94,8 @@ public class LogUtil {
|
||||
SDK.getLogAPI().audit(AuditConst.CHANNEL_CLIENT, AuditConst.CATALOG_PROCESS, me.getUID(), op, obj, info, me.getClientIP(), level);
|
||||
}
|
||||
|
||||
/*
|
||||
创建日志
|
||||
查询日志
|
||||
删除日志
|
||||
更新日志
|
||||
*/
|
||||
|
||||
/**
|
||||
* 创建日志
|
||||
* 创建日志(日志操作行为,非具体日志信息)
|
||||
* @param model
|
||||
* @return
|
||||
*/
|
||||
@ -111,7 +104,7 @@ public class LogUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询日志
|
||||
* 查询日志(日志操作行为,非具体日志信息)
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@ -120,7 +113,7 @@ public class LogUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除日志
|
||||
* 删除日志(日志操作行为,非具体日志信息)
|
||||
* @param id
|
||||
*/
|
||||
public static void removeLog(String id) {
|
||||
@ -128,14 +121,14 @@ public class LogUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 清空日志
|
||||
* 清空日志(日志操作行为,非具体日志信息)
|
||||
*/
|
||||
public static void removeAllLog() {
|
||||
new LogDao().removeAll();
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有日志,按照创建时间倒序
|
||||
* 查询所有日(日志操作行为,非具体日志信息),按照创建时间倒序
|
||||
* @return
|
||||
*/
|
||||
public static List<LogModel> queryAllLog() {
|
||||
@ -143,7 +136,7 @@ public class LogUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新日志
|
||||
* 更新日志(日志操作行为,非具体日志信息)
|
||||
* @param model
|
||||
* @return
|
||||
*/
|
||||
@ -152,7 +145,7 @@ public class LogUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新日志
|
||||
* 更新日志(日志操作行为,非具体日志信息)
|
||||
* @param id
|
||||
* @param endDate 结束时间
|
||||
* @param resultType 结果状态
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -151,6 +151,14 @@ public class CoEOpLogConst extends AuditConst {
|
||||
public static final String INFO_OUTPUT_DOWNLOAD = "下载报告手册文档";
|
||||
public static final String INFO_OUTPUT_DOWNLOAD_LOG = "下载报告手册文档日志";
|
||||
|
||||
// 数据迁移
|
||||
public static final String INFO_DATAMIGRATION_ACCESS = "访问数据迁移模块";
|
||||
public static final String INFO_DATAMIGRATION_CREATE = "新建数据迁移";
|
||||
public static final String INFO_DATAMIGRATION_UPDATE = "更新数据迁移";
|
||||
public static final String INFO_DATAMIGRATION_DELETE = "访问数据迁移";
|
||||
public static final String INFO_DATAMIGRATION_DOWNLOAD_LOG = "下载数据迁移日志";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user