diff --git a/DataBase/版本日志/SUBQHSE_V2025-09-16-xiaj(角色补充项目主管).sql b/DataBase/版本日志/SUBQHSE_V2025-09-16-xiaj(角色补充项目主管).sql
new file mode 100644
index 00000000..4f34021a
--- /dev/null
+++ b/DataBase/版本日志/SUBQHSE_V2025-09-16-xiaj(角色补充项目主管).sql
@@ -0,0 +1,17 @@
+
+
+
+update Sys_Role set RoleCode='101' where RoleName='Ŀ';
+
+
+--ɫĿ
+IF NOT EXISTS (SELECT 1 FROM Sys_Role WHERE RoleName = 'Ŀ')
+BEGIN
+ insert into Sys_Role(RoleId,RoleName,RoleCode,IsSystemBuilt,RoleType,IsAuditFlow)
+ values('b51072d6-5c8d-4763-b010-b3492b50feac','Ŀ','100',1,1,1)
+END
+GO
+
+
+
+
diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs
index cba955dc..e6c00786 100644
--- a/SGGL/BLL/Common/Const.cs
+++ b/SGGL/BLL/Common/Const.cs
@@ -390,6 +390,10 @@ namespace BLL
#region 内置项目角色定义
///
+ /// 项目主管
+ ///
+ public const string ProjectSupervisor = "b51072d6-5c8d-4763-b010-b3492b50feac";
+ ///
/// 项目经理
///
public const string ProjectManager = "1184835B-73AF-47FB-9F83-20740CE2FAD7";
diff --git a/SGGL/BLL/PZHGL/GJSX/GJSXMonitorService.cs b/SGGL/BLL/PZHGL/GJSX/GJSXMonitorService.cs
index 4a2bf1e2..e0ffeee7 100644
--- a/SGGL/BLL/PZHGL/GJSX/GJSXMonitorService.cs
+++ b/SGGL/BLL/PZHGL/GJSX/GJSXMonitorService.cs
@@ -125,7 +125,7 @@ namespace BLL