using System; using System.Collections.Generic; using System.Linq; using SqlSugar; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 区域表 /// [SugarTable("Dt_HostLog")] public class Dt_HostLog : BaseEntity { /// /// 备 注:区域ID /// 默认值: /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true,IsIdentity = true) ] public int id { get; set; } /// /// 备 注:区域编码 /// 默认值: /// [SugarColumn(ColumnName= "CommandID") ] public int CommandID { get; set; } /// /// 备 注:区域名称 /// 默认值: /// [SugarColumn(ColumnName= "Count") ] public int Count { get; set; } /// /// 备 注:区域类型 /// 默认值: /// [SugarColumn(ColumnName= "Messgae") ] public string Messgae { get; set; } } }