|
@@ -183,6 +183,11 @@ public class QrBoxMappingServiceImpl implements QrBoxMappingService {
|
|
|
// 封装出参、放入分页信息
|
|
|
ListQrBoxCodeMappingRes res = new ListQrBoxCodeMappingRes();
|
|
|
PageUtil.copyPageInfo(res, iPage);
|
|
|
+ qrboxMappingList.forEach(item -> {
|
|
|
+ if (item.getInvalid().equals(1)) {
|
|
|
+ item.setActiveStatus(9);
|
|
|
+ }
|
|
|
+ });
|
|
|
List<ListQrBoxCodeMappingRes.QrBoxMappingBean> beanList = PojoConverterUtils.copyList(qrboxMappingList, ListQrBoxCodeMappingRes.QrBoxMappingBean.class);
|
|
|
res.setQrBoxMappingBeanList(beanList);
|
|
|
|