合并最新

This commit is contained in:
2022-12-20 09:32:32 +08:00
parent 844e9f1488
commit 1abdaa9476
654 changed files with 73563 additions and 9746 deletions
@@ -48,15 +48,15 @@ namespace FineUIPro.Web.HSSE.EduTrain
/// </summary>
private void BindGrid()
{
string strSql = @"select [TrainingTestRecordId]
public string TrainingName]
public string UnitId]
public string DateA]
public string DateZ]
public string TrainingType]
public string PeopleNum]
public string ProjectId] from Training_TrainTestRecord where ProjectId = '" + this.CurrUser.LoginProjectId+"' ";
List<SqlParameter> listStr = new List<SqlParameter>();
string strSql = @"select TrainingTestRecordId,
TrainingName,
UnitId,
DateA,
DateZ,
TrainingType,
PeopleNum
from Training_TrainTestRecord where ProjectId = '" + this.CurrUser.LoginProjectId+"' ";
List<SqlParameter> listStr = new List<SqlParameter>();
if (!string.IsNullOrEmpty(this.txtName.Text.Trim()))
{
strSql += " AND TrainingName LIKE @name ";