1. 程式人生 > >StringUtils.toAppend 把 list 轉換成字串

StringUtils.toAppend 把 list 轉換成字串

                                                                                 
    public List<TaskitemsDto> getRealTimeVarieties(List<String> items) {
        String item = StringUtils.toAppend(items);  //把 list 轉換成字串
        return MapperUtils.mapper(tasksMapper.getRealTimeVarieties(item), TaskitemsDto.class);
    }