|
@@ -50,13 +50,10 @@ public class QrVariableServiceImpl implements QrVariableService {
|
|
|
qrVariableQw.eq(req.getParamType() != null, "param_type", req.getParamType());
|
|
|
qrVariableQw.orderByAsc("sort_number");
|
|
|
|
|
|
-
|
|
|
- IPage<QrVariable> iPage = qrVariableMapper.selectPage(PageUtil.createPage(req), qrVariableQw);
|
|
|
- List<QrVariable> qrVariableList = iPage.getRecords();
|
|
|
+ List<QrVariable> qrVariableList = qrVariableMapper.selectList(qrVariableQw);
|
|
|
|
|
|
|
|
|
ListQrVariableRes res = new ListQrVariableRes();
|
|
|
- PageUtil.copyPageInfo(res, iPage);
|
|
|
List<ListQrVariableRes.QrVariableBean> qrVariableBeanList = PojoConverterUtils.copyList(qrVariableList, ListQrVariableRes.QrVariableBean.class);
|
|
|
res.setQrVariableBeanList(qrVariableBeanList);
|
|
|
|