using SqlSugar; namespace DeviceRepair.Models { public class View_DriveInfomationModel : DeviceInformationInfo { /// /// 点检表编码 /// [SugarColumn(ColumnName = "VersionCode")] public string VersionCode { get; set; } /// /// 点检表版本 /// [SugarColumn(ColumnName = "VersionRev")] public string VersionRev { get; set; } [SugarColumn(IsIgnore = true)] public string MaintenanceFormVersionName { get; set; } [SugarColumn(IsIgnore = true)] public bool MaintenanceFormStatus { get; set; } public string RouteText { get; set; } } }