using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Model.Entity { /// /// 7线 /// [SugarTable("eqmt_collect_data7")] public class Eqmt7 { /// /// id /// [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] public long id { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] public DateTime? gmt_create { get; set; } = DateTime.Now; /// /// 修改时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] public DateTime? gmt_modified { get; set; } /// /// 收集唯一ID /// [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] public string collect_id { get; set; } /// /// /// public int eqmt_id { get; set; } public int d2000 { get; set; } public int w10 { get; set; } public int d9500 { get; set; } public int d9502 { get; set; } public int d9554 { get; set; } public int d9504 { get; set; } public int d9506 { get; set; } public int d9508 { get; set; } public int d9510 { get; set; } public int d9522 { get; set; } public decimal d9524 { get; set; } public decimal d9526 { get; set; } public decimal d9528 { get; set; } public decimal d9530 { get; set; } } }