Blame view

sys/Hh.Mes.POJO/ApiEntity/SysncUserOaEntity.cs 535 Bytes
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
using System;
using System.Collections.Generic;
using System.Text;

namespace Hh.Mes.POJO.ApiEntity
{
    public class SysncUserOaEntity
    {
        public string departName { get; set; }
        public string departPath { get; set; }
        public List<MemberInfoList> memberInfoList { get; set; }
    }

    public class MemberInfoList
    {
        public string name { get; set; }
        public string code { get; set; }
        public string levelName { get; set; }
        public string postName { get; set; }
    }

}