|
|
@ -8,7 +8,9 @@ using Myshipping.Application.Entity;
|
|
|
|
using Myshipping.Core;
|
|
|
|
using Myshipping.Core;
|
|
|
|
using System;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
using System.DirectoryServices.ActiveDirectory;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Text;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
@ -41,7 +43,14 @@ namespace Myshipping.Application.Service.TaskManagePlat
|
|
|
|
.Select(u => new TaskFlowTenant
|
|
|
|
.Select(u => new TaskFlowTenant
|
|
|
|
{
|
|
|
|
{
|
|
|
|
PK_ID = u.PK_ID,
|
|
|
|
PK_ID = u.PK_ID,
|
|
|
|
|
|
|
|
FlowCode = u.FlowCode,
|
|
|
|
|
|
|
|
MethodName = u.MethodName,
|
|
|
|
|
|
|
|
PId = u.PId,
|
|
|
|
|
|
|
|
IsMain = u.IsMain,
|
|
|
|
|
|
|
|
IsBoolReturn = u.IsBoolReturn,
|
|
|
|
|
|
|
|
TrueMethod = u.TrueMethod,
|
|
|
|
|
|
|
|
FalseMethod = u.FalseMethod,
|
|
|
|
|
|
|
|
TaskApiId = u.TaskApiId,
|
|
|
|
SYSTEM_CODE = u.SYSTEM_CODE,
|
|
|
|
SYSTEM_CODE = u.SYSTEM_CODE,
|
|
|
|
SYSTEM_NAME = u.SYSTEM_NAME
|
|
|
|
SYSTEM_NAME = u.SYSTEM_NAME
|
|
|
|
});
|
|
|
|
});
|
|
|
|