using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// CarOnlineReport:实体类(属性说明自动提取数据库字段的描述信息) /// [Table("CarOnlineReport")] public class CarOnlineReport { public CarOnlineReport() { } #region Model private Guid? _id; private DateTime? _onlinedate; private int? _onlinenum; private string _add_name; /// /// /// [Column("id", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// /// public DateTime? OnlineDate { set { _onlinedate = value; } get { return _onlinedate; } } /// /// /// public int? OnlineNum { set { _onlinenum = value; } get { return _onlinenum; } } /// /// /// public int? OutFence { get; set; } /// /// /// public string Add_Name { set { _add_name = value; } get { return _add_name; } } #endregion Model } }