using OASystem.Domain.Entities.System; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.System { public class DepartmentIView { /// /// id /// public int Id { get; set; } /// /// 部门code /// public string DepCode { get; set; } /// /// 公司Id /// public int CompanyId { get; set; } /// /// 公司名称 /// public string CompanyName { get; set; } /// /// 部门名称 /// public string DepName { get; set; } /// /// 父级部门Id /// public int ParentDepId { get; set; } /// /// 父级部门Name /// public string ParentDepName { get; set; } /// /// 备注 /// public string Remark { get; set; } } public class DepartmentView { /// /// id /// public int Id { get; set; } /// /// 公司Id /// public int CompanyId { get; set; } /// /// 部门名称 /// public string? DepName { get; set; } } }