using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class ViolationPersonItem
{
public string CompileMan { get; set; }
public string ProjectId { get; set; }
public string ViolationPersonId { get; set; }
public string ViolationPersonCode { get; set; }
public string UnitId { get; set; }
public string UnitName { get; set; }
public string PersonId { get; set; }
public string PersonName { get; set; }
public string WorkPostId { get; set; }
public string WorkPostName { get; set; }
///
/// 违章名称
///
public string ViolationName { get; set; }
public string ViolationNameC { get; set; }
///
/// 违章类型
///
public string ViolationType { get; set; }
public string ViolationTypeC { get; set; }
///
/// 违章日期
///
public string ViolationDate { get; set; }
///
/// 处理措施
///
public string HandleStep { get; set; }
public string HandleStepName { get; set; }
///
/// 违章描述
///
public string ViolationDef { get; set; }
}
}