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.APIItem.SYHSE
|
|
{
|
|
public class DataRiskItem
|
|
{
|
|
public string Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ProjectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? ReportDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ControlObject
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RespDepartment
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RespPerson
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string AnalysisUnit
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RiskEvent
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RiskLevel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string CreateMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? CreateDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|