using Ant.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
///
/// 车辆参数详情
///
///
/// YW_CarParamDetails:实体类(属性说明自动提取数据库字段的描述信息)
///
[Table("YW_CarParamDetails")]
public partial class YW_CarParamDetails
{
public YW_CarParamDetails()
{ }
#region Model
private Guid? _id;
private string _imei;
private string _hydraulic;
private string _temperature;
private string _voltage;
private string _speed;
private string _timestamp;
private int? _cartype;
private DateTime? _add_time;
///
///
///
///
[Column("ID", IsPrimaryKey = true)]
public Guid? ID
{
set { _id = value; }
get { return _id; }
}
///
///
///
public string imei
{
set { _imei = value; }
get { return _imei; }
}
///
///
///
public string hydraulic
{
set { _hydraulic = value; }
get { return _hydraulic; }
}
///
///
///
public string temperature
{
set { _temperature = value; }
get { return _temperature; }
}
///
///
///
public string voltage
{
set { _voltage = value; }
get { return _voltage; }
}
///
///
///
public string speed
{
set { _speed = value; }
get { return _speed; }
}
///
///
///
public string timestamp
{
set { _timestamp = value; }
get { return _timestamp; }
}
///
///
///
public int? cartype
{
set { _cartype = value; }
get { return _cartype; }
}
///
///
///
public DateTime? add_time
{
set { _add_time = value; }
get { return _add_time; }
}
#endregion Model
}
}