@@ -354,21 +354,21 @@ namespace Learun.Application.Web.Areas.LR_NewWorkFlow.Controllers | |||||
}; | }; | ||||
return Success(jsonData); | return Success(jsonData); | ||||
} | } | ||||
//[HttpGet] | |||||
//[AjaxOnly] | |||||
//public ActionResult GetUseCar(string pagination, string queryJson) | |||||
//{ | |||||
// Pagination paginationobj = pagination.ToObject<Pagination>(); | |||||
// var list = nWFProcessIBLL.GetUseCar(paginationobj, queryJson); | |||||
// var jsonData = new | |||||
// { | |||||
// rows = list, | |||||
// total = paginationobj.total, | |||||
// page = paginationobj.page, | |||||
// records = paginationobj.records, | |||||
// }; | |||||
// return Success(jsonData); | |||||
//} | |||||
[HttpGet] | |||||
[AjaxOnly] | |||||
public ActionResult GetTransceiver(string pagination, string queryJson) | |||||
{ | |||||
Pagination paginationobj = pagination.ToObject<Pagination>(); | |||||
var list = nWFProcessIBLL.GetTransceiver(paginationobj, queryJson); | |||||
var jsonData = new | |||||
{ | |||||
rows = list, | |||||
total = paginationobj.total, | |||||
page = paginationobj.page, | |||||
records = paginationobj.records, | |||||
}; | |||||
return Success(jsonData); | |||||
} | |||||
public ActionResult GetFirstTaskByProcessId(string processId) | public ActionResult GetFirstTaskByProcessId(string processId) | ||||
{ | { | ||||
@@ -0,0 +1,60 @@ | |||||
@{ | |||||
ViewBag.Title = "用车申请统计"; | |||||
Layout = "~/Views/Shared/_Index.cshtml"; | |||||
} | |||||
<div id="lr_layout" class="lr-layout lr-layout-left-center"> | |||||
<div class="lr-layout-left"> | |||||
<div class="lr-layout-wrap lr-layout-wrap-notitle" style="padding-top:10px;"> | |||||
<div class="lr-layout-body"> | |||||
<ul class="lr-left-list" id="lr_left_list"> | |||||
<li class="active lrlg" data-value="1">未完成</li> | |||||
<li data-value="2" class="lrlg">已完成</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-center"> | |||||
<div class="lr-layout-wrap lr-layout-wrap-notitle"> | |||||
<div class="lr-layout-tool"> | |||||
<div class="lr-layout-tool-left"> | |||||
<div class="lr-layout-tool-item"> | |||||
<div id="multiple_condition_query"> | |||||
<div class="lr-query-formcontent"> | |||||
<div class="col-xs-12 lr-form-item"> | |||||
<div class="lr-form-item-title">来文单位</div> | |||||
<input id="LC_party" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item"> | |||||
<div class="lr-form-item-title">文件名称</div> | |||||
<input id="LC_name" type="text" class="form-control" /> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-tool-item"> | |||||
<div id="datesearch"></div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-tool-right"> | |||||
<div class=" btn-group btn-group-sm"> | |||||
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a> | |||||
</div> | |||||
<div class=" btn-group btn-group-sm"> | |||||
<a id="lr_eye" class="btn btn-default"><i class="fa fa-eye"></i> <span class="lrlg">查看</span></a> | |||||
@*<a id="lr_appoint" class="btn btn-default"><i class="fa fa-magic"></i> <span class="lrlg">指派审核人</span></a> | |||||
<a id="lr_cancel" class="btn btn-default"><i class="fa fa-trash-o"></i> <span class="lrlg">作废</span></a>*@ | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-body" id="gridtable"> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
@Html.AppendJsFile("/Areas/LR_NewWorkFlow/Views/NWFProcess/Transceiver.js") | |||||
@@ -0,0 +1,144 @@ | |||||
/* | |||||
* 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架(http://www.learun.cn) | |||||
* Copyright (c) 2013-2018 上海力软信息技术有限公司 | |||||
* 创建人:力软-前端开发组 | |||||
* 日 期:2018.12.19 | |||||
* 描 述:流程监控 | |||||
*/ | |||||
var bootstrap = function ($, learun) { | |||||
"use strict"; | |||||
var categoryId = '1'; | |||||
var logbegin = ''; | |||||
var logend = ''; | |||||
var page = { | |||||
init: function () { | |||||
$('#lr_verify').hide(); | |||||
page.initleft(); | |||||
page.initGrid(); | |||||
page.bind(); | |||||
}, | |||||
bind: function () { | |||||
$('#datesearch').lrdate({ | |||||
dfdata: [ | |||||
{ name: '今天', begin: function () { return learun.getDate('yyyy-MM-dd 00:00:00') }, end: function () { return learun.getDate('yyyy-MM-dd 23:59:59') } }, | |||||
{ name: '近7天', begin: function () { return learun.getDate('yyyy-MM-dd 00:00:00', 'd', -6) }, end: function () { return learun.getDate('yyyy-MM-dd 23:59:59') } }, | |||||
{ name: '近1个月', begin: function () { return learun.getDate('yyyy-MM-dd 00:00:00', 'm', -1) }, end: function () { return learun.getDate('yyyy-MM-dd 23:59:59') } }, | |||||
{ name: '近3个月', begin: function () { return learun.getDate('yyyy-MM-dd 00:00:00', 'm', -3) }, end: function () { return learun.getDate('yyyy-MM-dd 23:59:59') } }, | |||||
], | |||||
// 月 | |||||
mShow: false, | |||||
premShow: false, | |||||
// 季度 | |||||
jShow: false, | |||||
prejShow: false, | |||||
// 年 | |||||
ysShow: false, | |||||
yxShow: false, | |||||
preyShow: false, | |||||
yShow: false, | |||||
selectfn: function (begin, end) { | |||||
logbegin = begin; | |||||
logend = end; | |||||
page.search(); | |||||
} | |||||
}); | |||||
$('#multiple_condition_query').lrMultipleQuery(function (queryJson) { | |||||
page.search(queryJson); | |||||
}, 200, 400); | |||||
$('#qj_lx').lrDataItemSelect({ code: 'LeaveType' }); | |||||
$('#qj_name').lrDataSourceSelect({ code: 'teacheruserdata', value: 'f_userid', text: 'f_realname' }); | |||||
// 刷新 | |||||
$('#lr_refresh').on('click', function () { | |||||
location.reload(); | |||||
}); | |||||
// 查看 | |||||
$('#lr_eye').on('click', function () { | |||||
page.eye(); | |||||
}); | |||||
}, | |||||
initleft: function () { | |||||
$('#lr_left_list li').on('click', function () { | |||||
var $this = $(this); | |||||
var $parent = $this.parent(); | |||||
$parent.find('.active').removeClass('active'); | |||||
$this.addClass('active'); | |||||
categoryId = $this.attr('data-value'); | |||||
page.search(); | |||||
}); | |||||
}, | |||||
initGrid: function () { | |||||
$('#gridtable').lrAuthorizeJfGridLei({ | |||||
url: top.$.rootUrl + '/LR_NewWorkFlow/NWFProcess/GetTransceiver', | |||||
headData: [ | |||||
{ label: "来文单位", name: "LC_party", width: 100, align: "center" }, | |||||
{ label: "日期", name: "LC_accept", width: 150, align: "center" }, | |||||
{ label: "页数", name: "LC_amount", width: 100, align: "center" }, | |||||
{ label: "收文编号", name: "LC_num", width: 100, align: "center" }, | |||||
{ label: "文号", name: "LC_numdoc", width: 100, align: "center" }, | |||||
{ label: "文件名称", name: "LC_name", width: 100, align: "center" }, | |||||
{ label: "急缓程度", name: "LC_important", width: 100, align: "center" }, | |||||
{ label: "秘密级别", name: "LC_secret", width: 150, align: "center" }, | |||||
{ label: "备注", name: "LC_other", width: 150, align: "center" }, | |||||
{ | |||||
label: "状态", name: "F_EnabledMark", width: 100, align: "center", | |||||
formatter: function (cellvalue, row) { | |||||
if (row.F_IsFinished == 0) { | |||||
if (cellvalue == 1) { | |||||
if (row.F_IsUrge == "1" && categoryId == '2') { | |||||
return "<span class=\"label label-danger\">催办加急</span>"; | |||||
} | |||||
return "<span class=\"label label-success\">运行中</span>"; | |||||
} else if (cellvalue == 2) { | |||||
return "<span class=\"label label-primary\">草稿</span>"; | |||||
} else { | |||||
return "<span class=\"label label-danger\">作废</span>"; | |||||
} | |||||
} | |||||
else { | |||||
return "<span class=\"label label-warning\">结束</span>"; | |||||
} | |||||
} | |||||
}, | |||||
], | |||||
mainId: 'F_Id', | |||||
isPage: true, | |||||
sidx: 'F_CreateDate DESC', | |||||
dblclick: function () { | |||||
page.eye(); | |||||
} | |||||
}); | |||||
page.search(); | |||||
}, | |||||
search: function (param) { | |||||
param = param || {}; | |||||
param.StartTime = logbegin; | |||||
param.EndTime = logend; | |||||
param.categoryId = categoryId; | |||||
param.F_Category = 'LC_leave'; | |||||
param.F_SchemeCode = 'LC_leave'; | |||||
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) }); | |||||
}, | |||||
eye: function () { | |||||
var processId = $('#gridtable').jfGridValue('LC_ID') || ''; | |||||
var title = $('#gridtable').jfGridValue('F_Title'); | |||||
var schemeName = $('#gridtable').jfGridValue('F_SchemeName'); | |||||
if (schemeName != title && title) { | |||||
title = schemeName + "(" + title + ")"; | |||||
} | |||||
else { | |||||
title = schemeName; | |||||
} | |||||
if (learun.checkrow(processId)) { | |||||
learun.frameTab.open({ F_ModuleId: 'monitor' + processId, F_FullName: '查看-' + title, F_UrlAddress: '/LR_NewWorkFlow/NWFProcess/MonitorDetailsIndex?processId=' + processId }); | |||||
} | |||||
} | |||||
}; | |||||
page.init(); | |||||
} | |||||
@@ -1376,7 +1376,6 @@ | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\htPrint.css" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\htPrint.css" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ContractFiling.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ContractFiling.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfmeeting.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfmeeting.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Transceiver.js" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfyyspd.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfyyspd.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexZiChan.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexZiChan.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexGongWen.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexGongWen.js" /> | ||||
@@ -1386,6 +1385,7 @@ | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SelectUserForm.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SelectUserForm.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignForm.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignForm.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveStatistics.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveStatistics.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Transceiver.js" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\UseCar.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\UseCar.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\EqualForm.js" /> | <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\EqualForm.js" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.css" /> | <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.css" /> | ||||
@@ -7727,8 +7727,8 @@ | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfyyspd.cshtml" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfyyspd.cshtml" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\UseCar.cshtml" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\UseCar.cshtml" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveStatistics.cshtml" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveStatistics.cshtml" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Transceiver.cshtml" /> | |||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfmeeting.cshtml" /> | <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexOfmeeting.cshtml" /> | ||||
<Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Transceiver.cshtml" /> | |||||
<None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | <None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | ||||
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | <None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | ||||
<Content Include="Views\Login\Default-beifen.cshtml" /> | <Content Include="Views\Login\Default-beifen.cshtml" /> | ||||
@@ -75,6 +75,10 @@ namespace Learun.Application.WorkFlow | |||||
{ | { | ||||
return nWFProcessSerive.GetLeaveStatistics(pagination, queryJson); | return nWFProcessSerive.GetLeaveStatistics(pagination, queryJson); | ||||
} | } | ||||
public IEnumerable<NWFProcessEntity> GetTransceiver(Pagination pagination, string queryJson) | |||||
{ | |||||
return nWFProcessSerive.GetTransceiver(pagination, queryJson); | |||||
} | |||||
public string GetFirstTaskByProcessId(string processId) | public string GetFirstTaskByProcessId(string processId) | ||||
{ | { | ||||
return nWFProcessSerive.GetFirstTaskByProcessId(processId); | return nWFProcessSerive.GetFirstTaskByProcessId(processId); | ||||
@@ -30,6 +30,7 @@ namespace Learun.Application.WorkFlow | |||||
IEnumerable<NWFProcessEntity> GetPageList(Pagination pagination, string queryJson); | IEnumerable<NWFProcessEntity> GetPageList(Pagination pagination, string queryJson); | ||||
IEnumerable<NWFProcessEntity> GetUseCar(Pagination pagination, string queryJson); | IEnumerable<NWFProcessEntity> GetUseCar(Pagination pagination, string queryJson); | ||||
IEnumerable<NWFProcessEntity> GetLeaveStatistics(Pagination pagination, string queryJson); | IEnumerable<NWFProcessEntity> GetLeaveStatistics(Pagination pagination, string queryJson); | ||||
IEnumerable<NWFProcessEntity> GetTransceiver(Pagination pagination, string queryJson); | |||||
string GetFirstTaskByProcessId(string processId); | string GetFirstTaskByProcessId(string processId); | ||||
IEnumerable<NWFProcessEntity> GetAllList(); | IEnumerable<NWFProcessEntity> GetAllList(); | ||||
@@ -187,14 +187,13 @@ namespace Learun.Application.WorkFlow | |||||
strSql.Append(" and zb.F_IsFinished= '1' "); | strSql.Append(" and zb.F_IsFinished= '1' "); | ||||
} | } | ||||
strSql.Append(" and zb.F_SchemeCode = 'LC_gcsq' "); | strSql.Append(" and zb.F_SchemeCode = 'LC_gcsq' "); | ||||
strSql.Append(" and zb.F_EnabledMark != '3' and F_EnabledMark != '2' and F_IsChild='0' "); | |||||
strSql.Append(" and zb.F_EnabledMark != '3' and F_EnabledMark != '4' and F_IsChild='0' "); | |||||
//if (!queryParam["StartTime"].IsEmpty() && !queryParam["EndTime"].IsEmpty()) | //if (!queryParam["StartTime"].IsEmpty() && !queryParam["EndTime"].IsEmpty()) | ||||
//{ | //{ | ||||
// DateTime startTime = queryParam["StartTime"].ToDate(); | // DateTime startTime = queryParam["StartTime"].ToDate(); | ||||
// DateTime endTime = queryParam["EndTime"].ToDate(); | // DateTime endTime = queryParam["EndTime"].ToDate(); | ||||
// strSql.Append(" and ( zb.F_CreateDate>= " + startTime + " && F_CreateDate <= " + endTime + " )"); | // strSql.Append(" and ( zb.F_CreateDate>= " + startTime + " && F_CreateDate <= " + endTime + " )"); | ||||
//} | //} | ||||
strSql.Append(" and F_IsStart=1 "); | |||||
if (!queryParam["LC_ycbm"].IsEmpty()) | if (!queryParam["LC_ycbm"].IsEmpty()) | ||||
{ | { | ||||
strSql.Append(" and cl.LC_ycbm like '%" + queryParam["LC_ycbm"].ToString() + "%' "); | strSql.Append(" and cl.LC_ycbm like '%" + queryParam["LC_ycbm"].ToString() + "%' "); | ||||
@@ -246,7 +245,7 @@ namespace Learun.Application.WorkFlow | |||||
var dbMISName = this.BaseRepository("CollegeMIS").getDbConnection().Database; | var dbMISName = this.BaseRepository("CollegeMIS").getDbConnection().Database; | ||||
var dp = new DynamicParameters(new { }); | var dp = new DynamicParameters(new { }); | ||||
var strSql = new StringBuilder(); | var strSql = new StringBuilder(); | ||||
strSql.Append(" select zb.*,lnp.* from "+ dbMISName + ".[dbo].cs_qj zb "); | |||||
strSql.Append(" select zb.*,lnp.* from " + dbMISName + ".[dbo].cs_qj zb "); | |||||
strSql.Append(" left join " + dbName + ".[dbo].LR_NWF_PROCESS lnp on zb.LC_ID =lnp.F_id "); | strSql.Append(" left join " + dbName + ".[dbo].LR_NWF_PROCESS lnp on zb.LC_ID =lnp.F_id "); | ||||
strSql.Append(" where 1=1 "); | strSql.Append(" where 1=1 "); | ||||
if (queryParam["categoryId"].ToString() == "1") | if (queryParam["categoryId"].ToString() == "1") | ||||
@@ -258,8 +257,7 @@ namespace Learun.Application.WorkFlow | |||||
strSql.Append(" and lnp.F_IsFinished= '1' "); | strSql.Append(" and lnp.F_IsFinished= '1' "); | ||||
} | } | ||||
strSql.Append(" and lnp.F_SchemeCode = 'LC_leave' "); | strSql.Append(" and lnp.F_SchemeCode = 'LC_leave' "); | ||||
strSql.Append(" and lnp.F_EnabledMark != '3' and lnp.F_EnabledMark != '2' and lnp.F_IsChild='0' "); | |||||
strSql.Append(" and lnp.F_IsStart=1 "); | |||||
strSql.Append(" and lnp.F_EnabledMark != '3' and lnp.F_EnabledMark != '4' and lnp.F_IsChild='0' "); | |||||
if (!queryParam["qj_name"].IsEmpty()) | if (!queryParam["qj_name"].IsEmpty()) | ||||
{ | { | ||||
strSql.Append(" and zb.qj_name = '" + queryParam["qj_name"].ToString() + "' "); | strSql.Append(" and zb.qj_name = '" + queryParam["qj_name"].ToString() + "' "); | ||||
@@ -294,6 +292,63 @@ namespace Learun.Application.WorkFlow | |||||
} | } | ||||
} | } | ||||
/// <summary> | /// <summary> | ||||
/// 获取流程信息列表 | |||||
/// </summary> | |||||
/// <param name="pagination">分页参数</param> | |||||
/// <param name="queryJson">查询条件</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<NWFProcessEntity> GetTransceiver(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
var queryParam = queryJson.ToJObject(); | |||||
var dbName = this.BaseRepository().getDbConnection().Database; | |||||
var dbMISName = this.BaseRepository("CollegeMIS").getDbConnection().Database; | |||||
var dp = new DynamicParameters(new { }); | |||||
var strSql = new StringBuilder(); | |||||
strSql.Append(" select zb.*,lnp.* from " + dbMISName + ".[dbo].LC_docx2 zb "); | |||||
strSql.Append(" left join " + dbName + ".[dbo].LR_NWF_PROCESS lnp on zb.LC_ID =lnp.F_id "); | |||||
strSql.Append(" where 1=1 "); | |||||
if (queryParam["categoryId"].ToString() == "1") | |||||
{ | |||||
strSql.Append(" and lnp.F_IsFinished= '0' "); | |||||
} | |||||
else | |||||
{ | |||||
strSql.Append(" and lnp.F_IsFinished= '1' "); | |||||
} | |||||
strSql.Append(" and lnp.F_SchemeCode = 'LC_docx' "); | |||||
strSql.Append(" and lnp.F_EnabledMark != '3' and lnp.F_EnabledMark != '4' and lnp.F_IsChild='0' "); | |||||
if (!queryParam["LC_party"].IsEmpty()) | |||||
{ | |||||
strSql.Append(" and zb.LC_party like '%" + queryParam["LC_party"].ToString() + "%' "); | |||||
} | |||||
if (!queryParam["LC_name"].IsEmpty()) | |||||
{ | |||||
strSql.Append(" and zb.LC_name like '%" + queryParam["LC_name"].ToString() + "%' "); | |||||
} | |||||
if (!queryParam["StartTime"].IsEmpty() && !queryParam["EndTime"].IsEmpty()) | |||||
{ | |||||
DateTime startTime = queryParam["StartTime"].ToDate(); | |||||
DateTime endTime = queryParam["EndTime"].ToDate(); | |||||
strSql.Append(" and ( zb.LC_accept>= '" + startTime + "' and zb.LC_accept <= '" + endTime + "' )"); | |||||
} | |||||
return this.BaseRepository("CollegeMIS").FindList<NWFProcessEntity>(strSql.ToString(), dp); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowServiceException(ex); | |||||
} | |||||
} | |||||
} | |||||
/// <summary> | |||||
/// 根据processid 获取taskid | /// 根据processid 获取taskid | ||||
/// </summary> | /// </summary> | ||||
/// <param name="processId">流程id</param> | /// <param name="processId">流程id</param> | ||||