using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.System { /// /// 部门首页消息提示 /// public class DepartmentHomePageMessagePromptsDto : PortDtoBase { /// /// 部门 /// 1 总经办 /// 2 国交部 /// 3 财务 /// public int DepType { get; set; } /// /// 岗位 /// DepType = 1 PostRange(1:总经理) /// DepType = 2 PostRange(1:机票、2:酒店、3:OP、4:商邀、5:签证) /// DepType = 3 PostRange(1:财务经理、2:会计、3:出纳) /// public int PostType { get; set; } } }