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