41 lines
818 B
C#
41 lines
818 B
C#
|
|
using DeerProject.Common;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DeerProject.Models
|
|||
|
|
{
|
|||
|
|
public class SysBaseModel : NotifyBase
|
|||
|
|
{
|
|||
|
|
private int Id;
|
|||
|
|
|
|||
|
|
public int ID
|
|||
|
|
{
|
|||
|
|
get { return Id; }
|
|||
|
|
set { Id = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private DateTime recordTime;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据记录时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime RecordTime
|
|||
|
|
{
|
|||
|
|
get { return recordTime; }
|
|||
|
|
set { recordTime = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private DateTime createTime;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据创建时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime CreateTime
|
|||
|
|
{
|
|||
|
|
get { return createTime; }
|
|||
|
|
set { createTime = value; }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|