|
@@ -120,10 +120,10 @@ namespace TEAMModelOS.Controllers
|
|
|
}
|
|
|
if (groupList!=null)
|
|
|
{
|
|
|
- return Ok(new {code=200, nos = groupList.members.Select(x => x.no),optNo= groupList.optNo });
|
|
|
+ return Ok(new {code=200, nos = groupList.members.Select(x => x.no),optNo= groupList.optNo , limitCount=groupList.limitCount});
|
|
|
}
|
|
|
else {
|
|
|
- return Ok(new {code=404, nos =new List<string>() , optNo =0});
|
|
|
+ return Ok(new {code=404, nos =new List<string>() , optNo =0, limitCount =0});
|
|
|
}
|
|
|
}
|
|
|
|