提交代码

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
@@ -0,0 +1,35 @@
using System;
namespace Model
{
public class ConstructionEquipmentOutput:BaseEntities
{
/// <summary>
/// 设备
/// </summary>
public string SpecialEquipmentName { get; set; }
/// <summary>
/// 类型
/// </summary>
public string EQType { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string SizeModel { get; set; }
/// <summary>
/// 进场自检情况
/// </summary>
public string OwnerCheck { get; set; }
/// <summary>
/// 设备合格证号
/// </summary>
public string CertificateNum { get; set; }
public DateTime? CompileDate { get; set; }
/// <summary>
/// 是否使用
/// </summary>
public bool ? IsUsed { get; set; }
}
}