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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace ZJ_BYD.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 事业部工厂代码表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("t_dept")]
|
|
|
|
|
public class T_Dept : BaseModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 地域码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "areacode")]
|
|
|
|
|
public string AreaCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工厂代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "deptcode")]
|
|
|
|
|
public string DeptCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工厂名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "deptname")]
|
|
|
|
|
public string DeptName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否默认选中
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "defaultselected")]
|
|
|
|
|
public bool DefaultSelected { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否被删除
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "isdeleted")]
|
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|