using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.Entity { /// /// YW_AntoCarList:实体类(属性说明自动提取数据库字段的描述信息) /// [Table("YW_AntoCarList")] public partial class YW_AntoCarList { public YW_AntoCarList() { } #region Model private Guid? _id; private string _factorynumber; private string _carid; private decimal? _longitude; private decimal? _latitude; private string _address; private string _hydraulic; private string _temperature; private string _voltage; private string _speed; private DateTime? _add_time; private decimal? _work_time; private string _carmodel; private string _carname; private string _cartel; private string _distributorsname; /// /// /// [Column("ID", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// /// public string FactoryNumber { set { _factorynumber = value; } get { return _factorynumber; } } /// /// /// public string CarID { set { _carid = value; } get { return _carid; } } /// /// /// public decimal? longitude { set { _longitude = value; } get { return _longitude; } } /// /// /// public decimal? latitude { set { _latitude = value; } get { return _latitude; } } /// /// /// public string Address { set { _address = value; } get { return _address; } } /// /// /// 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 DateTime? add_time { set { _add_time = value; } get { return _add_time; } } /// /// /// public decimal? work_time { set { _work_time = value; } get { return _work_time; } } /// /// /// public string CarModel { set { _carmodel = value; } get { return _carmodel; } } /// /// /// public string CarName { set { _carname = value; } get { return _carname; } } /// /// /// public string CarTel { set { _cartel = value; } get { return _cartel; } } /// /// /// public string DistributorsName { set { _distributorsname = value; } get { return _distributorsname; } } #endregion Model } }