DeviceManager/DeviceRepair.Models/Device/View_DriveInfomationModel.cs

28 lines
675 B
C#
Raw Normal View History

2024-05-28 14:36:38 +00:00
using SqlSugar;
namespace DeviceRepair.Models
{
public class View_DriveInfomationModel : DeviceInformationInfo
{
/// <summary>
/// 点检表编码
/// </summary>
[SugarColumn(ColumnName = "VersionCode")]
public string VersionCode { get; set; }
/// <summary>
/// 点检表版本
/// </summary>
[SugarColumn(ColumnName = "VersionRev")]
public string VersionRev { get; set; }
[SugarColumn(IsIgnore = true)]
public string MaintenanceFormVersionName { get; set; }
[SugarColumn(IsIgnore = true)]
public bool MaintenanceFormStatus { get; set; }
}
}