2025-04-07 17:43:30 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 作业许可证
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class LicenseOutput:BaseEntities
|
|
|
|
|
|
{
|
2026-03-23 15:22:29 +08:00
|
|
|
|
public string LicenseTypeId { get; set; }
|
2025-04-07 17:43:30 +08:00
|
|
|
|
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; }
|
2026-03-23 15:22:29 +08:00
|
|
|
|
public string WorkStates { get; set; }
|
2025-04-07 17:43:30 +08:00
|
|
|
|
public string WorkStatesStr { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|