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; }
///
/// 公司Id
///
public int CompanyId { get; set; }
///
/// 部门名称
///
public string DepName { get; set; }
///
/// 父级部门Id
///
public int ParentDepId { get; set; }
}
}