using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 车辆购买人 /// [Serializable] [Table("YW_CarPurchaser")] public partial class YW_CarPurchaser { public YW_CarPurchaser() { } #region Model private Guid _id; private string _carid; private string _carbar; private string _imei; private string _username; private string _usertel; private string _useraddress; private string _usercode; private DateTime? _adddate; private string _addname; private DateTime? _updatedate; private string _updatename; /// /// 主键 /// [Column("ID", IsPrimaryKey = true)] public Guid ID { set { _id = value; } get { return _id; } } /// /// /// public string carId { set { _carid = value; } get { return _carid; } } /// /// /// public string carBar { set { _carbar = value; } get { return _carbar; } } /// /// /// public string imei { set { _imei = value; } get { return _imei; } } /// /// /// public string userName { set { _username = value; } get { return _username; } } /// /// /// public string userTel { set { _usertel = value; } get { return _usertel; } } /// /// /// public string userAddress { set { _useraddress = value; } get { return _useraddress; } } /// /// /// public string userCode { set { _usercode = value; } get { return _usercode; } } /// /// 添回时间 /// public DateTime? addDate { set { _adddate = value; } get { return _adddate; } } /// /// 添加人 /// public string addName { set { _addname = value; } get { return _addname; } } /// /// 更新时间 /// public DateTime? updateDate { set { _updatedate = value; } get { return _updatedate; } } /// /// 更新人 /// public string updateName { set { _updatename = value; } get { return _updatename; } } /// /// 购买时间 /// public DateTime? SaleDate { get; set; } /// /// 经销商ID /// public string distributorsID { get; set; } #endregion Model } }