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_UserCar")] public partial class YW_UserCar { public YW_UserCar() { } #region Model private Guid _id; private string _userid; private string _carid; private DateTime? _add_time; private string _add_name; private DateTime? _update_time; private string _update_name; /// /// /// [Column("id", IsPrimaryKey = true)] public Guid ID { set { _id = value; } get { return _id; } } /// /// 用户ID /// public string userId { set { _userid = value; } get { return _userid; } } /// /// 车ID /// public string carId { set { _carid = value; } get { return _carid; } } public string note { get; set; } /// /// 添加时间 /// public DateTime? add_time { set { _add_time = value; } get { return _add_time; } } /// /// 添加人 /// public string add_name { set { _add_name = value; } get { return _add_name; } } /// /// 更新时间 /// public DateTime? update_time { set { _update_time = value; } get { return _update_time; } } /// /// 更新人 /// public string update_name { set { _update_name = value; } get { return _update_name; } } /// /// /// public string userTel { get; set; } /// /// /// public string userName { get; set; } /// /// /// public int? userIdentity { get;set; } #endregion Model } }