lingling
2025-03-18 ceb8ce456f406d4010aa83dd7da3d9e63f0e211a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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; }
    }
}