using ProjectBase.Data.BaseDAL; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.Model { [Serializable] public class MoPcData: BaseEntity { /// /// 默认构造函数(需要初始化属性的在此处理) /// public MoPcData() { this.Id = 0; this.Model = 0; this.Color = 0; } #region Property Members /// /// 当日序列1~1500 /// public virtual int Id { get; set; } /// /// 记录数据导入日期(防止第二天写入前未清除) /// public virtual DateTime ImportTime { get; set; } /// /// 型号 /// public virtual int Model { get; set; } /// /// 颜色 /// public virtual int Color { get; set; } /// /// VIN码,限制17个字符 /// public virtual string Vin { get; set; } #endregion } }