initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Indotalent.Data.Abstracts;
|
||||
using Indotalent.Data.Interfaces;
|
||||
using Indotalent.Infrastructure.AutoNumberGenerator;
|
||||
|
||||
namespace Indotalent.Data.Entities;
|
||||
|
||||
public class AutoNumberSequence : BaseEntity, IAutoNumberGenerator, IMultiTenant
|
||||
{
|
||||
public string? EntityName { get; set; }
|
||||
public int? Year { get; set; }
|
||||
public int? Month { get; set; }
|
||||
public long? CurrentSequence { get; set; }
|
||||
public string? PrefixTemplate { get; set; }
|
||||
public string? SuffixTemplate { get; set; }
|
||||
public int? PaddingLength { get; set; }
|
||||
public string? TenantId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user