You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1001 B
50 lines
1001 B
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db.Mds
|
|
{
|
|
|
|
/// <summary>
|
|
/// 团队
|
|
/// </summary>
|
|
[ Table(Name = "userdepartment", DisableSyncStructure = true)]
|
|
public partial class Userdepartment {
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人Id
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string CreatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 否已删除
|
|
/// </summary>
|
|
[Column(DbType = "tinyint(4)")]
|
|
public sbyte Deleted { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public string DepartmentName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上级部门
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string ParentDepartmentId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|