120 lines
2.0 KiB
C#
120 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.APIItem.SYHSE
|
|
{
|
|
public class DataHiddenDangersItem
|
|
{
|
|
public string Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ProjectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string PicBefore
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string PicAfter
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DangerDes
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? CheckDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CheckUnit
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CheckPerson
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ConfirmPerson
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RiskLevel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RiskAddress
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ResponseMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string RectificationStatus
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Status
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CreateMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Type
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ResponseUnit
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ImgAfter
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string ImgBefore
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime? CreateDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|