Commit 9adf7e63 authored by zhangsen's avatar zhangsen

修改日志表的操作人操作时间部分为空的bug

parent ac183461
...@@ -6,9 +6,7 @@ import com.yeejoin.amos.boot.biz.common.controller.BaseController; ...@@ -6,9 +6,7 @@ import com.yeejoin.amos.boot.biz.common.controller.BaseController;
import com.yeejoin.amos.boot.module.ugp.api.Enum.TabLogoEnum; import com.yeejoin.amos.boot.module.ugp.api.Enum.TabLogoEnum;
import com.yeejoin.amos.boot.module.ugp.api.dto.OverProjectDto; import com.yeejoin.amos.boot.module.ugp.api.dto.OverProjectDto;
import com.yeejoin.amos.boot.module.ugp.api.service.IProjectInitiationService; import com.yeejoin.amos.boot.module.ugp.api.service.IProjectInitiationService;
import com.yeejoin.amos.boot.module.ugp.biz.service.impl.ProjectInitiationServiceImpl;
import com.yeejoin.amos.boot.module.ugp.biz.service.impl.ProjectOverFlowServiceImpl; import com.yeejoin.amos.boot.module.ugp.biz.service.impl.ProjectOverFlowServiceImpl;
import com.yeejoin.amos.boot.module.ugp.biz.service.impl.ProjectServiceImpl;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -32,15 +30,10 @@ import javax.annotation.Resource; ...@@ -32,15 +30,10 @@ import javax.annotation.Resource;
@RequestMapping(value = "/projectOver") @RequestMapping(value = "/projectOver")
public class ProjectOverFlowController extends BaseController { public class ProjectOverFlowController extends BaseController {
@Resource
private ProjectServiceImpl projectServiceImpl;
@Resource @Resource
private IProjectInitiationService iProjectInitiationService; private IProjectInitiationService iProjectInitiationService;
@Resource
private ProjectInitiationServiceImpl projectInitiationServiceImpl;
@Autowired @Autowired
ProjectOverFlowServiceImpl projectOverFlowService; ProjectOverFlowServiceImpl projectOverFlowService;
...@@ -60,8 +53,10 @@ public class ProjectOverFlowController extends BaseController { ...@@ -60,8 +53,10 @@ public class ProjectOverFlowController extends BaseController {
String token = RequestContext.getToken(); String token = RequestContext.getToken();
String appKey = RequestContext.getAppKey(); String appKey = RequestContext.getAppKey();
String product = RequestContext.getProduct(); String product = RequestContext.getProduct();
String exeUserId = RequestContext.getExeUserId();
//分支线程执行流程 //分支线程执行流程
Thread t1 = new Thread(() -> { Thread t1 = new Thread(() -> {
RequestContext.setExeUserId(exeUserId);
RequestContext.setToken(token); RequestContext.setToken(token);
RequestContext.setAppKey(appKey); RequestContext.setAppKey(appKey);
RequestContext.setProduct(product); RequestContext.setProduct(product);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment