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; } } }