using SqlSugar; using System; namespace Highway.Assemble.common { /// /// /// [SugarTable("real_workdata")] public class RealWorkdata { /// /// /// [SugarColumn(ColumnName = "combineid")] public string Combineid { get; set; } /// /// /// [SugarColumn(ColumnName = "tm")] public DateTime? Tm { get; set; } /// /// /// [SugarColumn(ColumnName = "data")] public string Data { get; set; } /// /// /// [SugarColumn(ColumnName = "reportmode")] public decimal? Reportmode { get; set; } /// /// /// [SugarColumn(ColumnName = "edittime")] public DateTime? Edittime { get; set; } /// /// /// [SugarColumn(ColumnName = "deleteflag")] public int? Deleteflag { get; set; } } }