这个方法啥意思呀
public List all(CategoryQueryReq req) {
CategoryExample categoryExample = new CategoryExample();
categoryExample.setOrderByClause(“sort asc”);
List categoryList = categoryMapper.selectByExample(categoryExample);
//列表复制
List list = CopyUtil.copyList(categoryList, CategoryQueryResp.class);
return list;
}