|
|
|
@ -286,7 +286,10 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
formDto.setSomeMonthsAgo(DateUtils.addDateMonths(new Date(), -6)); |
|
|
|
// 查询数据状态
|
|
|
|
int[] states = {EventIssueItemState.ITEM_HANDLING, EventIssueItemState.ITEM_CLOSEING_CASE}; |
|
|
|
List<ItemResultDTO> data = baseDao.getQuestionList(formDto, states); |
|
|
|
List<String> itemIdList = formDto.getItemIdList(); |
|
|
|
String[] itemIdArr = new String[itemIdList.size()]; |
|
|
|
itemIdList.toArray(itemIdArr); |
|
|
|
List<ItemResultDTO> data = baseDao.getQuestionList(formDto, states,itemIdArr); |
|
|
|
return new Result<List<ItemResultDTO>>().ok(data); |
|
|
|
} |
|
|
|
|
|
|
|
|