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.
12 lines
349 B
12 lines
349 B
using Infrastructure.Domain;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
[Display(Name = "部门")]
|
|
public class Department : BaseTreeEntity<Department>
|
|
{
|
|
public List<UserDepartment> UserDepartments { get; set; } = new List<UserDepartment>();
|
|
}
|
|
} |