From b3ab66f99a8452e463daebc9b0ec01b937819966 Mon Sep 17 00:00:00 2001 From: ndbs Date: Sat, 11 Jan 2025 13:40:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=B8=88=E5=9F=B9=E8=AE=AD=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=A7=92=E8=89=B2=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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 73644c485..a224f0bb4 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 @@ -75,11 +75,11 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement { if (!queryParam["EID"].IsEmpty()) { - strSql.Append(" AND (StatusMark ='1' or StatusMark='2' )"); + strSql.Append(" AND (State ='1' or State='2' )"); } else { - strSql.Append(" AND (StatusMark ='1' or StatusMark='2' ) or EID ='" + user.userId + "'"); + strSql.Append(" AND (State ='1' or State='2' ) or EID ='" + user.userId + "'"); } } }