using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace WMS.BZModels.Models.FJQuestDB { [Tenant("questdbfj")] [SugarTable("FJ_DevAlarmInfo")] public class FJDevAlarmInfo: BaseEntityModel { [SugarColumn(ColumnDataType = "nvarchar")] public string alarm { get; set; } public DateTime starttime { get; set; } public DateTime endtime { get; set; } [SugarColumn(ColumnDataType = "bigint" )] public long duration { get; set; } public int type { get; set; } public DateTime frame { get; set; } public string code { get; set; } [SugarColumn(IsIgnore = true)] public int isSkip { get; set; } } }