using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace WMS.BZModels.Models.FJQuestDB { [Tenant("questdbfj")] [SugarTable("FJ_DevRunInfo")] public class FJDevRunInfo:BaseEntityModel { public string runmode { get; set; } public string runstatus { 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; } } }