You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@DatapublicclassDDUserInfo {
/** * The extension field, represented as a String. */privateStringextension;
/** * The unionid field, represented as a String. */privateStringunionid;
/** * The boss field, represented as a String. */privateStringboss;
/** * A list of roles associated with the user. */privateList<Role> roleList;
/** * A boolean indicating whether the account is exclusive. */privatebooleanexclusiveAccount;
/** * The manager's user id, represented as a String. */privateStringmanagerUserid;
/** * The admin field, represented as a String. */privateStringadmin;
/** * Any remarks associated with the user, represented as a String. */privateStringremark;
/** * The title of the user, represented as a String. */privateStringtitle;
/** * The date the user was hired, represented as a String. */privateStringhiredDate;
/** * The user's id, represented as a String. */privateStringuserid;
/** * The user's workplace, represented as a String. */privateStringworkPlace;
/** * The order of the employee in the corresponding department. */privateList<DeptOrder> deptOrderList;
/** * A String indicating whether the user is authed in real life. */privateStringrealAuthed;
/** * A list of department ids associated with the user, represented as a String. */privateStringdeptIdList;
/** * The user's dept, represented as a String. */privateStringdeptName;
/** * The user's job number, represented as a String. */privateStringjobNumber;
/** * The user's email, represented as a String. */privateStringemail;
/** * Information about the user's position in the department and whether they are a leader. */privateList<LeaderInDept> leaderInDept;
/** * The user's mobile number, represented as a String. */privateStringmobile;
/** * A String indicating whether the user is active. */privateStringactive;
/** * The user's organization email, represented as a String. */privateStringorgEmail;
/** * The user's telephone number, represented as a String. */privateStringtelephone;
/** * The user's avatar, represented as a String. */privateStringavatar;
/** * A String indicating whether the user's mobile number is hidden. */privateStringhideMobile;
/** * A String indicating whether the user is a senior. */privateStringsenior;
/** * The user's name, represented as a String. */privateStringname;
/** * Extended information about the user's union membership. */// private UnionEmpExt unionEmpExt;/** * The user's state code, represented as a String. */privateStringstateCode;
@DatapublicstaticclassLeaderInDept {
privateStringleader;
privateLongdeptId;
}
@DatapublicstaticclassDeptOrder {
privateLongdeptId;
privateStringorder;
}
@DatapublicstaticclassRole {
privateStringgroupName;
privateStringname;
privateLongid;
}
}
问题描述
该方法在开启JSONReader.Feature.SupportSmartMatch模式后,只能解析最外层的下划线变量,内层无法解析到,例如下面的dept_order_list中的dept_id获取到的值为空
bean对象:
环境信息
请填写以下信息:
重现步骤
The text was updated successfully, but these errors were encountered: