From 25e7725b918b210f62ec2a3b826034cbd09191d0 Mon Sep 17 00:00:00 2001 From: ndbs Date: Tue, 7 Jan 2025 10:36:43 +0800 Subject: [PATCH] --- .../PersonnelManagement/TeacherTrain/TeacherTrainService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherTrain/TeacherTrainService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherTrain/TeacherTrainService.cs index b26b7d0d5..723272390 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherTrain/TeacherTrainService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/TeacherTrain/TeacherTrainService.cs @@ -73,13 +73,13 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement } else { - if (!queryParam["CreateUser"].IsEmpty()) + if (!queryParam["EID"].IsEmpty()) { strSql.Append(" AND (StatusMark ='1' or StatusMark='2' )"); } else { - strSql.Append(" AND (StatusMark ='1' or StatusMark='2' ) or CreateUser ='" + user.userId + "'"); + strSql.Append(" AND (StatusMark ='1' or StatusMark='2' ) or EID ='" + user.userId + "'"); } } }