20250329 工作台
This commit is contained in:
+14
-1
@@ -61,7 +61,7 @@ namespace Model
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, states, pageIndex, pageSize);
|
||||
return (ISingleResult<RectifyNoticesItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取现场单位考勤
|
||||
/// </summary>
|
||||
@@ -106,5 +106,18 @@ namespace Model
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, userId);
|
||||
return (ISingleResult<ToDoItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取当前用户工作台待办预警
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <param name="sType"></param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[Sp_WorkBench_GetToDoItems]")]
|
||||
public IEnumerable<ToDoItem> Sp_WorkBench_GetToDoItems([Parameter(DbType = "nvarchar(200)")] string userId, [Parameter(DbType = "nvarchar(10)")] string sType)
|
||||
{
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), userId, sType);
|
||||
return (ISingleResult<ToDoItem>)result.ReturnValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user