using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// 省市区表,数据实体对象 /// //[Table("Znyc.sys_region")] [Table("sys_region")] [Serializable] public class RegionEntity : BaseEntity { /// /// 父级 /// public long ParentId { get; set; } /// /// id /// public long RegionId { get; set; } /// /// 名称 /// [MaxLength(50)] public string Name { get; set; } } }