fengling-gateway/Models/GwTenant.cs

16 lines
534 B
C#

namespace YarpGateway.Models;
public class GwTenant
{
public long Id { get; set; }
public string TenantCode { get; set; } = string.Empty;
public string TenantName { get; set; } = string.Empty;
public int Status { get; set; } = 1;
public long? CreatedBy { get; set; }
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
public long? UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public bool IsDeleted { get; set; } = false;
public int Version { get; set; } = 0;
}