| | |
| | | import io.swagger.annotations.ApiParam; |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import lombok.AllArgsConstructor; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import javax.validation.Valid; |
| | | |
| | | import org.springblade.core.excel.util.ExcelUtil; |
| | | import org.springblade.core.log.annotation.ApiLog; |
| | | import org.springblade.core.log.logger.BladeLogger; |
| | | import org.springblade.core.secure.BladeUser; |
| | |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.core.tool.jackson.JsonUtil; |
| | | import org.springblade.core.tool.utils.DateUtil; |
| | | import org.springblade.core.tool.utils.Func; |
| | | import org.springblade.modules.backblast.excel.BackblastPubRecordExcel; |
| | | import org.springblade.modules.house.excel.HouseRentalExcel; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.backblast.entity.BackblastPubRecordEntity; |
| | |
| | | import org.springblade.modules.backblast.wrapper.BackblastPubRecordWrapper; |
| | | import org.springblade.modules.backblast.service.IBackblastPubRecordService; |
| | | import org.springblade.core.boot.ctrl.BladeController; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 反炸宣传记录表 控制器 |
| | |
| | | BackblastPubRecordVO detail = backblastPubRecordService.getDetail(backblastPubRecord); |
| | | return R.data(detail); |
| | | } |
| | | |
| | | |
| | | @GetMapping("/export") |
| | | @ApiOperationSupport(order = 10) |
| | | @ApiOperation(value = "导出", notes = "") |
| | | public void export(BackblastPubRecordVO backblastPubRecord, HttpServletResponse response) { |
| | | List<BackblastPubRecordExcel> list = backblastPubRecordService.export(backblastPubRecord); |
| | | ExcelUtil.export(response, "入户宣传" + DateUtil.time(), "入户宣传数据表", list, BackblastPubRecordExcel.class); |
| | | |
| | | } |
| | | } |