202306131、新增项目级消息待办页面功能。2、新增项目单位是否同步实名制设置功能。3、优化考试合格自动生成卡号功能。
This commit is contained in:
@@ -59831,6 +59831,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<decimal> _SumMoney;
|
||||
|
||||
private string _NextManId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -59875,6 +59877,8 @@ namespace Model
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnSumMoneyChanging(System.Nullable<decimal> value);
|
||||
partial void OnSumMoneyChanged();
|
||||
partial void OnNextManIdChanging(string value);
|
||||
partial void OnNextManIdChanged();
|
||||
#endregion
|
||||
|
||||
public CostGoods_CostManage()
|
||||
@@ -60199,6 +60203,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NextManId", DbType="NVarChar(50)")]
|
||||
public string NextManId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._NextManId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._NextManId != value))
|
||||
{
|
||||
this.OnNextManIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._NextManId = value;
|
||||
this.SendPropertyChanged("NextManId");
|
||||
this.OnNextManIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_CostGoods_CostManage_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -191083,6 +191107,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _RealNamePushTime;
|
||||
|
||||
private System.Nullable<bool> _IsSynchro;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -191115,6 +191141,8 @@ namespace Model
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnRealNamePushTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnRealNamePushTimeChanged();
|
||||
partial void OnIsSynchroChanging(System.Nullable<bool> value);
|
||||
partial void OnIsSynchroChanged();
|
||||
#endregion
|
||||
|
||||
public Project_ProjectUnit()
|
||||
@@ -191372,6 +191400,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSynchro", DbType="Bit")]
|
||||
public System.Nullable<bool> IsSynchro
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsSynchro;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsSynchro != value))
|
||||
{
|
||||
this.OnIsSynchroChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsSynchro = value;
|
||||
this.SendPropertyChanged("IsSynchro");
|
||||
this.OnIsSynchroChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Project_ProjectUnit_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
+15
-2
@@ -28,9 +28,22 @@ namespace Model
|
||||
/// <param name="isono"></param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[Sp_Main_GetToDoItems]")]
|
||||
public IEnumerable<ToDoItem> Sp_Main_GetToDoItems([Parameter(DbType = "nvarchar(50)")] string userId)
|
||||
public IEnumerable<ToDoItem> Sp_Main_GetToDoItems([Parameter(DbType = "nvarchar(50)")] string personId)
|
||||
{
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), userId);
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), personId);
|
||||
return (ISingleResult<ToDoItem>)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 personId)
|
||||
{
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, personId);
|
||||
return (ISingleResult<ToDoItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user