using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// YW_UserDistributor:实体类(属性说明自动提取数据库字段的描述信息) /// [Table("YW_UserDistributor")] public partial class EntYW_UserDistributor { public EntYW_UserDistributor() { } #region Model private Guid? _id; private int? _userid; private string _distributorid; /// /// /// [Column("id", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// /// public int? userId { set { _userid = value; } get { return _userid; } } /// /// /// public string distributorId { set { _distributorid = value; } get { return _distributorid; } } /// /// /// public string add_name { get; set; } /// /// /// public DateTime? add_time { get; set; } /// /// /// public int? ProductLine { get; set; } /// /// /// public int? distype { get; set; } /// /// /// public int? ProductLine1 { get; set; } /// /// /// public int? ProductLine2 { get; set; } /// /// /// public int? ProductLine3 { get; set; } /// /// /// public int? ProductLine4 { get; set; } /// /// /// public int? ProductLine5 { get; set; } #endregion Model } }