EmployeeGetOutput.cs 546 B

12345678910111213141516171819202122
  1. using Admin.Core.Service.Personnel.Employee.Input;
  2. namespace Admin.Core.Service.Personnel.Employee.Output
  3. {
  4. public class EmployeeGetOutput : EmployeeUpdateInput
  5. {
  6. /// <summary>
  7. /// 主属部门
  8. /// </summary>
  9. public string OrganizationName { get; set; }
  10. /// <summary>
  11. /// 附属部门
  12. /// </summary>
  13. public string[] OrganizationNames { get; set; }
  14. /// <summary>
  15. /// 职位
  16. /// </summary>
  17. public string PositionName { get; set; }
  18. }
  19. }