remove 删除无用参数
This commit is contained in:
parent
867e7bf665
commit
cfc2dba275
@ -67,10 +67,4 @@ public class TestLeaveVo implements Serializable {
|
||||
@ExcelProperty(value = "状态")
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 流程实例id
|
||||
*/
|
||||
@ExcelProperty(value = "流程实例id")
|
||||
private String processInstanceId;
|
||||
|
||||
}
|
||||
|
@ -46,9 +46,7 @@ public class TestLeaveServiceImpl implements ITestLeaveService {
|
||||
*/
|
||||
@Override
|
||||
public TestLeaveVo queryById(Long id) {
|
||||
TestLeaveVo testLeaveVo = baseMapper.selectVoById(id);
|
||||
testLeaveVo.setProcessInstanceId(workflowService.getInstanceIdByBusinessKey(String.valueOf(id)));
|
||||
return testLeaveVo;
|
||||
return baseMapper.selectVoById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user