修改待办
This commit is contained in:
@@ -93,5 +93,18 @@ namespace Model
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, unitId, workPostId, day);
|
||||
return (ISingleResult<AbsenceDutyItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取当前用户在项目待办事项
|
||||
/// </summary>
|
||||
/// <param name="unitcode"></param>
|
||||
/// <param name="isono"></param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[Sp_Project_GetToDoItems]")]
|
||||
public IEnumerable<ToDoItem> Sp_Project_GetToDoItems([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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user