using System; namespace CB.Entity { /// /// 区域表 By JNswins /// public class AreaInfo : BaseEntity { /// /// ID /// public int Aid { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 父ID /// public int ParentId { get; set; } /// /// 区域类型 /// public AreaType Depth { get; set; } } public enum AreaType { /// /// 全国性彩种 /// Country=1, /// /// 省彩票 /// Province=2, /// /// 区域 /// Area=3 } }