74 lines
1.2 KiB
C#
74 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.HSSE
|
|
{
|
|
public class TrainTestRecordItem
|
|
{
|
|
public string TrainingTestRecordId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string TrainingName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DateA
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DateZ
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string TrainingType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string TrainingTypeName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string PeopleNum
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ProjectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string AttachUrl1
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string AttachUrl2
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
}
|
|
}
|