namespace SafeCampus.Application.Services.Business.DepartmentService; public class DepartmentDto { /// /// id /// public long? Id { get; set; } /// /// 院系名称 /// public string Name { get; set; } /// /// 院系编码 /// public string Code { get; set; } }