DepartmentHomePageMessagePromptsDto.cs 797 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.System
  7. {
  8. /// <summary>
  9. /// 部门首页消息提示
  10. /// </summary>
  11. public class DepartmentHomePageMessagePromptsDto : PortDtoBase
  12. {
  13. /// <summary>
  14. /// 部门
  15. /// 1 总经办
  16. /// 2 国交部
  17. /// 3 财务
  18. /// </summary>
  19. public int DepType { get; set; }
  20. /// <summary>
  21. /// 岗位
  22. /// DepType = 1 PostRange(1:总经理)
  23. /// DepType = 2 PostRange(1:机票、2:酒店、3:OP、4:商邀、5:签证)
  24. /// DepType = 3 PostRange(1:财务经理、2:会计、3:出纳)
  25. /// </summary>
  26. public int PostType { get; set; }
  27. }
  28. }