Waste/Waste.Domain/DataModel/W_AreaInfo.cs

48 lines
1.2 KiB
C#
Raw Permalink Normal View History

2021-05-27 16:58:40 +08:00
using SqlSugar;
namespace Waste.Domain
{
/// <summary>
/// 地址信息配置
/// </summary>
public class W_AreaInfo
{
/// <summary>
/// 地址信息配置
/// </summary>
public W_AreaInfo()
{
}
private System.Int32 _Id;
/// <summary>
///
/// </summary>
public System.Int32 Id { get { return this._Id; } set { this._Id = value; } }
private System.Int32 _pid;
/// <summary>
///
/// </summary>
public System.Int32 pid { get { return this._pid; } set { this._pid = value; } }
private System.String _name;
/// <summary>
///
/// </summary>
public System.String name { get { return this._name; } set { this._name = value?.Trim(); } }
private System.String _code;
/// <summary>
///
/// </summary>
public System.String code { get { return this._code; } set { this._code = value?.Trim(); } }
private System.Int32 _level;
/// <summary>
///
/// </summary>
public System.Int32 level { get { return this._level; } set { this._level = value; } }
}
}