using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
using SqlSugar;
namespace WIDESEAWCS_Model.Models
{
[SugarTable(nameof(Dt_Department), "部门表")]
public class Dt_Department : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id{ get; set; }
///
/// 部门名称
///
[SugarColumn(IsNullable =true,Length =50,ColumnDescription ="部门名称")]
public string DepartmentName { get; set; }
}
}