using System;
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
namespace LifePayment.Domain.Models
|
{
|
public class Area : FullAuditedAggregateRoot<Guid>
|
{
|
public int? ParentId { get; set; }
|
|
public int AreaCode { get; set; }
|
|
public string AreaName { get; set; }
|
|
public string QuickQuery { get; set; }
|
|
public string Description { get; set; }
|
|
public int Layer { get; set; }
|
|
public int? SortCode { get; set; }
|
|
public int? Sort { get; set; }
|
|
public string SimpleSpelling { get; set; }
|
|
public bool IsEnable { get; set; }
|
}
|
}
|