|
@@ -4,6 +4,8 @@ import com.bizmatics.common.core.bean.ApiResult;
|
|
|
import com.bizmatics.common.core.bean.CommonPage;
|
|
|
import com.bizmatics.model.vo.SysAsyncTaskVo;
|
|
|
import com.bizmatics.service.ISysAsyncTaskService;
|
|
|
+import com.bizmatics.service.dto.SysAsyncTaskDTO;
|
|
|
+import com.bizmatics.service.enums.AsyncResultType;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -29,4 +31,17 @@ public class SysAsyncController {
|
|
|
return ApiResult.success(iSysAsyncTaskService.getList(asyncTaskId, startTime, endTime, funcType, user, current, size));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public Long getId(String userId, String userName, String funcType) {
|
|
|
+ return iSysAsyncTaskService.getId(userId, userName, funcType);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void sendResult(Long id, Boolean isSuccess, String result, AsyncResultType resultType) {
|
|
|
+ iSysAsyncTaskService.sendResult(id, isSuccess, result, resultType);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void sendResult(SysAsyncTaskDTO sysAsyncTask) {
|
|
|
+ iSysAsyncTaskService.sendResult(sysAsyncTask);
|
|
|
+ }
|
|
|
+
|
|
|
}
|