schangxiang@126.com
2025-05-08 8e83181db5ff4463949c8a15e56a2163a5616845
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CMS.Plugin.HIAWms.Domain.Extension
{
    public class AuditableEntity
    {
        public string CreatorId { get; set; }
        public string CreatorName { get; set; }
        public DateTime CreationTime { get; set; }
        public string LastModifierName { get; set; }
        public string LastModifierId { get; set; }
        public DateTime? LastModificationTime { get; set; }
        public bool IsDeleted { get; set; }
        public string DeleterId { get; set; }
        public DateTime? DeletionTime { get; set; }
        public string ExtraProperties { get; set; }
        public string ConcurrencyStamp { get; set; }
        public int Sort { get; set; }
        public string Remark { get; set; }
        public bool IsDisabled { get; set; }
    }
}