|
@@ -88,8 +88,18 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration |
|
|
} |
|
|
} |
|
|
if (!queryParam["PeopleType"].IsEmpty()) |
|
|
if (!queryParam["PeopleType"].IsEmpty()) |
|
|
{ |
|
|
{ |
|
|
dp.Add("PeopleType", "%" + queryParam["PeopleType"].ToString() + "%", DbType.String); |
|
|
|
|
|
strSql.Append(" AND t.PeopleType like @PeopleType "); |
|
|
|
|
|
|
|
|
dp.Add("PeopleType", queryParam["PeopleType"].ToString(), DbType.String); |
|
|
|
|
|
strSql.Append(" AND t.PeopleType = @PeopleType "); |
|
|
|
|
|
} |
|
|
|
|
|
if (!queryParam["PayGrade"].IsEmpty()) |
|
|
|
|
|
{ |
|
|
|
|
|
dp.Add("PayGrade", queryParam["PayGrade"].ToString(), DbType.String); |
|
|
|
|
|
strSql.Append(" AND t.PayGrade = @PayGrade "); |
|
|
|
|
|
} |
|
|
|
|
|
if (!queryParam["PostType"].IsEmpty()) |
|
|
|
|
|
{ |
|
|
|
|
|
dp.Add("PostType", queryParam["PostType"].ToString(), DbType.String); |
|
|
|
|
|
strSql.Append(" AND t.PostType = @PostType "); |
|
|
} |
|
|
} |
|
|
if (!queryParam["WageCardNo"].IsEmpty()) |
|
|
if (!queryParam["WageCardNo"].IsEmpty()) |
|
|
{ |
|
|
{ |
|
|