zhengyuxuan
2025-04-02 2c511ccf6541384f517eda69f897a23404573983
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; }
    }
}