Commit 4708262d by guojuxing

参数修改

parent 62fbabbf
......@@ -180,10 +180,9 @@ public class AccountGroupController {
* @return com.gic.commons.webapi.reponse.RestResponse


 */
@RequestMapping("/add-group-member")
public RestResponse addGroupMember(Object memberArr) {
LOGGER.info("添加组员数组参数test:{}", JSON.toJSONString(memberArr));
String memberArr1 = "";
List<AccountGroupMemberDTO> list = JSON.parseArray(memberArr1, AccountGroupMemberDTO.class);
public RestResponse addGroupMember(String memberArr) {
LOGGER.info("添加组员数组参数:{}", memberArr);
List<AccountGroupMemberDTO> list = JSON.parseArray(memberArr, AccountGroupMemberDTO.class);
if (CollectionUtils.isNotEmpty(list)) {
Integer enterpriseId = UserDetailUtils.getUserDetail().getEnterpriseId();
for (AccountGroupMemberDTO temp : list) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment