EntityBase.cs 386 字节
Newer Older
1
using System;
lwplvx's avatar
lwplvx 已提交
2
using Aurora.Common.Entities;
3

4
namespace Aurora.Core.Domain.Entities
5
{
S
simon 已提交
6
    public class EntityBase:IEntity
7
    {
S
simon 已提交
8
        public int ID { get; set; } 
9 10
        public DateTimeOffset CreateTime { get; set; }
        public string CreateUserName { get; set; }
S
simon 已提交
11
        public DateTimeOffset? ModifyTime { get; set; }
12
        public string ModifyUserName { get; set; }
S
simon 已提交
13

14 15
    }
}