安全待办
This commit is contained in:
+13
-1
@@ -34,7 +34,19 @@ namespace Model
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, userId);
|
||||
return (ISingleResult<ToDoItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取当前用户在移动端待办事项
|
||||
/// </summary>
|
||||
/// <param name="unitcode"></param>
|
||||
/// <param name="isono"></param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[Sp_APP_GetHSSEToDoItems]")]
|
||||
public IEnumerable<ToDoItem> Sp_APP_GetHSSEToDoItems([Parameter(DbType = "nvarchar(50)")] string projectId, [Parameter(DbType = "nvarchar(50)")] string userId)
|
||||
{
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, userId);
|
||||
return (ISingleResult<ToDoItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取当前用户在本部待办事项
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user