using System; using System.Collections.Generic; using System.Text; namespace Estsh.Core.Quartz.Model { public class BaseModel { /// /// 主键ID /// public int id { get; set; } /// /// 数据插入时间 /// public Nullable timeflag { get; set; } /// /// 数据修改时间 /// public Nullable changetime { get; set; } } }