using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace MyCode.Project.Domain.Model
{
///
///
///
[SugarTable("BasDepartment")]
public partial class BasDepartment
{
public BasDepartment(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public Guid Id {get;set;}
///
/// Desc:部门名称
/// Default:
/// Nullable:True
///
public string Name {get;set;}
///
/// Desc:在父部门中的次序值
/// Default:
/// Nullable:True
///
public int? OrderNum {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? EditTime {get;set;}
///
/// Desc:企业微信ID
/// Default:
/// Nullable:True
///
public long? WeChatId {get;set;}
///
/// Desc:企业微信父级ID
/// Default:
/// Nullable:True
///
public long? WeChatIdParentId {get;set;}
}
}