You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
519 B
C#

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