schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace Admin.NET.Application
{
    /// <summary>
    /// 员工信息参数
    /// </summary>
    public class EmpOutput
    {
        /// <summary>
        /// 工号
        /// </summary>
        public string JobNum { get; set; }
 
        /// <summary>
        /// 机构id
        /// </summary>
        public string OrgId { get; set; }
 
        /// <summary>
        /// 机构名称
        /// </summary>
        public string OrgName { get; set; }
 
        /// <summary>
        /// 机构与职位信息
        /// </summary>
        public List<EmpExtOrgPosOutput> ExtOrgPos { get; set; } = new List<EmpExtOrgPosOutput>();
 
        /// <summary>
        /// 职位信息
        /// </summary>
        public List<EmpPosOutput> Positions { get; set; } = new List<EmpPosOutput>();
    }
}