Quellcode durchsuchen

Merge branch '新疆警官学校中职' of http://123.57.209.16:3000/bjquanjiang/DigitalScholl into 新疆警官学校中职

新疆警官学校中职
yxq vor 1 Jahr
Ursprung
Commit
d0bb3a6ab6
1 geänderte Dateien mit 10 neuen und 0 gelöschten Zeilen
  1. +10
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TeachClass/TeachClassService.cs

+ 10
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TeachClass/TeachClassService.cs Datei anzeigen

@@ -73,6 +73,16 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
dp.Add("LessonNo", queryParam["LessonNo"].ToString(), DbType.String); dp.Add("LessonNo", queryParam["LessonNo"].ToString(), DbType.String);
strSql.Append(" AND t.LessonNo = @LessonNo "); strSql.Append(" AND t.LessonNo = @LessonNo ");
} }
if (!queryParam["ClassNo"].IsEmpty())
{
dp.Add("ClassNo", queryParam["ClassNo"].ToString(), DbType.String);
strSql.Append(" AND t.ClassNo = @ClassNo ");
}
if (!queryParam["EmpNo"].IsEmpty())
{
dp.Add("EmpNo", queryParam["EmpNo"].ToString(), DbType.String);
strSql.Append(" AND t.EmpNo = @EmpNo ");
}
return this.BaseRepository("CollegeMIS").FindList<TeachClassEntity>(strSql.ToString(), dp, pagination); return this.BaseRepository("CollegeMIS").FindList<TeachClassEntity>(strSql.ToString(), dp, pagination);
} }
catch (Exception ex) catch (Exception ex)


Laden…
Abbrechen
Speichern