using SqlSugar;
using System;
namespace Highway.Assemble.common
{
///
///
///
[SugarTable("real_mesdata")]
public class RealMesdata
{
///
///
///
[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 = "response")]
public string Response { 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; }
}
}