修改稽查
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user