using SqlSugar;
namespace Waste.Domain
{
///
/// 地址信息配置
///
public class W_AreaInfo
{
///
/// 地址信息配置
///
public W_AreaInfo()
{
}
private System.Int32 _Id;
///
///
///
public System.Int32 Id { get { return this._Id; } set { this._Id = value; } }
private System.Int32 _pid;
///
///
///
public System.Int32 pid { get { return this._pid; } set { this._pid = value; } }
private System.String _name;
///
///
///
public System.String name { get { return this._name; } set { this._name = value?.Trim(); } }
private System.String _code;
///
///
///
public System.String code { get { return this._code; } set { this._code = value?.Trim(); } }
private System.Int32 _level;
///
///
///
public System.Int32 level { get { return this._level; } set { this._level = value; } }
}
}