|
@@ -69,9 +69,8 @@ public class CouponController {
|
|
|
HttpServletResponse response
|
|
|
) throws Exception {
|
|
|
ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean);
|
|
|
- // IPage<AdminWebsitVO> adminDeptVOIPage = couponLogic.list(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam);
|
|
|
- //3.导出
|
|
|
- // FieldUtils.exportData(adminDeptVOIPage.getRecords(), zfireParam.getExportFields(), request, response);
|
|
|
+ IPage<CouponVO> couponVOIPage = couponLogic.list(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam); //3.导出
|
|
|
+ FieldUtils.exportData(couponVOIPage.getRecords(), zfireParam.getExportFields(), request, response);
|
|
|
}
|
|
|
|
|
|
|