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.

13 lines
368 B

using Infrastructure.Domain;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "机构")]
public class Organ : BaseTreeEntity<Organ>
{
public string Contact { get; set; }
public List<OrganUser> OrganUsers { get; set; } = new List<OrganUser>();
}
}