修改稽查

This commit is contained in:
2022-08-15 16:13:12 +08:00
parent e9b20cc94f
commit 8187a0bc2a
7 changed files with 253 additions and 59 deletions
+7 -7
View File
@@ -2,19 +2,19 @@
namespace IRaCIS.Core.Domain.Models
{
public interface IAuditAdd<TKey> where TKey: struct
public interface IAuditAdd<TKey> where TKey : struct
{
TKey CreateUserId { get; set; }
DateTime CreateTime { get; set; }
public TKey CreateUserId { get; set; }
public DateTime CreateTime { get; set; }
}
public interface IAuditAdd: IAuditAdd<Guid>
public interface IAuditAdd : IAuditAdd<Guid>
{
}
public interface IAuditAddWithUserName : IAuditAdd<Guid>
+2 -2
View File
@@ -4,9 +4,9 @@ namespace IRaCIS.Core.Domain.Models
{
public interface IAuditUpdate<TKey> where TKey : struct
{
TKey UpdateUserId { get; set; }
public TKey UpdateUserId { get; set; }
//string UpdateUserName { get; set; }
DateTime UpdateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
public interface IAuditUpdate : IAuditUpdate<Guid>