提交代码

This commit is contained in:
2024-12-24 19:04:32 +08:00
parent 2e3c34c38c
commit 189a020cc7
78 changed files with 9689 additions and 2214 deletions
+20
View File
@@ -0,0 +1,20 @@
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; }
}
}