using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
///
/// 系统地区数据
///
[SugarTable("sys_area")]
[Description("系统地区数据")]
public class SysArea : AutoIncrementEntity
{
///
/// 父级ID
///
public Int16 parent_id { get; set; }
///
/// 地区名
///
public string name { get; set; }
}
}