You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
617 B

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