using System;
|
|
namespace Leit.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:StationWorkLog
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class StationWorkLog :EntityBase<StationWorkLog>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Int64:
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public Int64 Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String Position {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String Msg {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String Command {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String StationCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// DateTime:
|
|
/// </summary>
|
|
|
|
public DateTime? OperationTime {get;set;}
|
|
|
|
}
|
|
}
|
|
|