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