using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// BaseArea:实体类(属性说明自动提取数据库字段的描述信息) /// [Table("BaseArea")] public partial class BaseArea { public BaseArea() { } #region Model private string _areacode; private string _areaname; private string _parentcode; private int? _carnum; private string _note; /// /// /// [Column("id", IsPrimaryKey = true), AutoIncrement] public int Id { set; get; } /// /// /// public string AreaCode { set { _areacode = value; } get { return _areacode; } } /// /// /// public string AreaName { set { _areaname = value; } get { return _areaname; } } /// /// /// public string ParentCode { set { _parentcode = value; } get { return _parentcode; } } /// /// /// public int? CarNum { set { _carnum = value; } get { return _carnum; } } /// /// /// 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; } /// /// /// public int? ProductLine6 { get; set; } /// /// /// public int? ProductLine7 { get; set; } /// /// /// public int? OutFence { get; set; } /// /// /// public string Note { set { _note = value; } get { return _note; } } #endregion Model } }