提交代码

This commit is contained in:
2024-12-25 15:43:38 +08:00
parent 0a2f9ea3a7
commit c0b489aaf4
79 changed files with 8536 additions and 1546 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; }
}
}