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