20 lines
556 B
C#
20 lines
556 B
C#
using System;
|
|
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// 作业许可证
|
|
/// </summary>
|
|
public class LicenseOutput:BaseEntities
|
|
{
|
|
public string LicenseTypeName { get; set; }
|
|
public string UnitTypeName { get; set; }
|
|
public string WorkAreaName { get; set; }
|
|
public bool? IsHighRisk { get; set; }
|
|
public DateTime? CompileDate { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public string WorkStatesStr { get; set; }
|
|
|
|
}
|
|
} |