7 changed files with 86 additions and 34 deletions
@ -1,8 +0,0 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace WinIn.FasterZ.Wms.AppBase.CreateUpdateBaseDto; |
|||
|
|||
public class CreateUpdateBaseDto : EntityDto<Guid> |
|||
{ |
|||
} |
@ -0,0 +1,9 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace WinIn.FasterZ.Wms.AppBase.FasterBaseDto; |
|||
|
|||
public class FasterAuditedEntityBaseDto : AuditedEntityDto<Guid> |
|||
{ |
|||
public string ConcurrencyStamp { get; set; } |
|||
} |
@ -0,0 +1,10 @@ |
|||
using System; |
|||
|
|||
namespace WinIn.FasterZ.Wms.AppBase.FasterBaseDto; |
|||
|
|||
public class FasterCreateUpdateBaseDto |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ConcurrencyStamp { get; set; } |
|||
} |
Loading…
Reference in new issue