#232 Make UserIds Guid.

pull/272/head
Halil İbrahim Kalkan 7 years ago
parent f0870ca427
commit ea952d88ca

@ -1,3 +1,5 @@
using System;
namespace Volo.Abp.Auditing
{
/// <summary>
@ -8,7 +10,7 @@ namespace Volo.Abp.Auditing
/// <summary>
/// Id of the creator user.
/// </summary>
long? CreatorUserId { get; set; }
Guid? CreatorUserId { get; set; }
}
/// <summary>

@ -1,3 +1,5 @@
using System;
namespace Volo.Abp.Auditing
{
/// <summary>
@ -8,7 +10,7 @@ namespace Volo.Abp.Auditing
/// <summary>
/// Id of the deleter user.
/// </summary>
long? DeleterUserId { get; set; }
Guid? DeleterUserId { get; set; }
}
/// <summary>

@ -1,3 +1,5 @@
using System;
namespace Volo.Abp.Auditing
{
/// <summary>
@ -8,7 +10,7 @@ namespace Volo.Abp.Auditing
/// <summary>
/// Last modifier user for this entity.
/// </summary>
long? LastModifierUserId { get; set; }
Guid? LastModifierUserId { get; set; }
}
/// <summary>

@ -13,7 +13,7 @@ namespace Volo.Abp.Application.Dtos
public DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public long? LastModifierUserId { get; set; }
public Guid? LastModifierUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Application.Dtos
public DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public long? LastModifierUserId { get; set; }
public Guid? LastModifierUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Application.Dtos
public DateTime CreationTime { get; set; }
/// <inheritdoc />
public long? CreatorUserId { get; set; }
public Guid? CreatorUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Application.Dtos
public DateTime CreationTime { get; set; }
/// <inheritdoc />
public long? CreatorUserId { get; set; }
public Guid? CreatorUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Application.Dtos
public bool IsDeleted { get; set; }
/// <inheritdoc />
public long? DeleterUserId { get; set; }
public Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public DateTime? DeletionTime { get; set; }
@ -30,7 +30,7 @@ namespace Volo.Abp.Application.Dtos
public bool IsDeleted { get; set; }
/// <inheritdoc />
public long? DeleterUserId { get; set; }
public Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public DateTime? DeletionTime { get; set; }

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public virtual long? LastModifierUserId { get; set; }
public virtual Guid? LastModifierUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public virtual long? LastModifierUserId { get; set; }
public virtual Guid? LastModifierUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public virtual long? LastModifierUserId { get; set; }
public virtual Guid? LastModifierUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime? LastModificationTime { get; set; }
/// <inheritdoc />
public virtual long? LastModifierUserId { get; set; }
public virtual Guid? LastModifierUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime CreationTime { get; set; }
/// <inheritdoc />
public virtual long? CreatorUserId { get; set; }
public virtual Guid? CreatorUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime CreationTime { get; set; }
/// <inheritdoc />
public virtual long? CreatorUserId { get; set; }
public virtual Guid? CreatorUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime CreationTime { get; set; }
/// <inheritdoc />
public virtual long? CreatorUserId { get; set; }
public virtual Guid? CreatorUserId { get; set; }
}
/// <summary>
@ -27,6 +27,6 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual DateTime CreationTime { get; set; }
/// <inheritdoc />
public virtual long? CreatorUserId { get; set; }
public virtual Guid? CreatorUserId { get; set; }
}
}

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual bool IsDeleted { get; set; }
/// <inheritdoc />
public virtual long? DeleterUserId { get; set; }
public virtual Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public virtual DateTime? DeletionTime { get; set; }
@ -30,7 +30,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual bool IsDeleted { get; set; }
/// <inheritdoc />
public virtual long? DeleterUserId { get; set; }
public virtual Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public virtual DateTime? DeletionTime { get; set; }

@ -13,7 +13,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual bool IsDeleted { get; set; }
/// <inheritdoc />
public virtual long? DeleterUserId { get; set; }
public virtual Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public virtual DateTime? DeletionTime { get; set; }
@ -30,7 +30,7 @@ namespace Volo.Abp.Domain.Entities.Auditing
public virtual bool IsDeleted { get; set; }
/// <inheritdoc />
public virtual long? DeleterUserId { get; set; }
public virtual Guid? DeleterUserId { get; set; }
/// <inheritdoc />
public virtual DateTime? DeletionTime { get; set; }

Loading…
Cancel
Save