You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
849 B
C#
36 lines
849 B
C#
using SqlSugar;
|
|
|
|
namespace ZJ_BYD.Model
|
|
{
|
|
/// <summary>
|
|
/// 地域代码
|
|
/// </summary>
|
|
[SugarTable("t_area")]
|
|
public class T_Area : BaseModel
|
|
{
|
|
/// <summary>
|
|
/// 地域码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "areacode")]
|
|
public string AreaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地域名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "areaname")]
|
|
public string AreaName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否默认选中
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "defaultselected")]
|
|
public bool DefaultSelected { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否被删除
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "isdeleted")]
|
|
public bool IsDeleted { get; set; }
|
|
}
|
|
}
|