20230316新增人员出入记录操作日志

This commit is contained in:
2023-03-16 10:48:42 +08:00
parent f2a3954a44
commit 2747440a89
15 changed files with 173 additions and 161 deletions
@@ -1,6 +1,7 @@
namespace FineUIPro.Web.ProjectData
{
using BLL;
using Model;
using System;
using System.Collections.Generic;
using System.Data;
@@ -122,7 +123,17 @@
{
BLL.RoleItemService.DeleteRoleItem(roleItem.RoleItemId);
}
SitePerson_PersonService.UpdateSitePerson(projectUser);
Model.Sys_Log newlog = new Sys_Log
{
UserId = this.CurrUser.PersonId,
MenuId = Const.PersonListMenuId,
OperationName = "项目用户",
OperationLog = "项目用户删除" + projectUser.PersonName,
DataId = projectUser.PersonId,
ProjectId = projectUser.ProjectId,
};
SitePerson_PersonService.UpdateSitePerson(projectUser, newlog);
}
}