|
|
|
@ -9,6 +9,7 @@ import com.air.land.service.LandListedService;
|
|
|
|
|
import com.air.land.vo.LandListedAppletsVo; |
|
|
|
|
import com.air.land.vo.LandListedPageVo; |
|
|
|
|
import com.air.land.vo.LandListedVo; |
|
|
|
|
import com.air.utils.DateUtil; |
|
|
|
|
import com.air.utils.ExcelUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
@ -31,6 +32,7 @@ import java.io.InputStream;
|
|
|
|
|
import java.io.OutputStream; |
|
|
|
|
import java.lang.reflect.InvocationTargetException; |
|
|
|
|
import java.lang.reflect.Method; |
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
@ -94,15 +96,30 @@ public class LandListedController {
|
|
|
|
|
* @param landListedVo 已挂牌地块参数 |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "保存已挂牌地块(新增,修改)", notes = "新增已挂牌地块(传id为修改,不传为新增)") |
|
|
|
|
@ApiOperation(value = "新增已挂牌地块", notes = "新增已挂牌地块") |
|
|
|
|
@PostMapping |
|
|
|
|
public R<Long> saveLandListed(@RequestBody LandListedVo landListedVo) { |
|
|
|
|
public R<String> saveLandListed(@RequestBody LandListedVo landListedVo) { |
|
|
|
|
LandListed landListed = new LandListed(); |
|
|
|
|
BeanUtil.copyProperties(landListedVo, landListed); |
|
|
|
|
landListedService.saveOrUpdate(landListed); |
|
|
|
|
landListed.setLandListedId(DateUtil.landListedIdfromDate(LocalDateTime.now(),"yyyyMMddHHmmssSSS")); |
|
|
|
|
landListedService.save(landListed); |
|
|
|
|
return R.ok(landListed.getLandListedId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 修改已挂牌地块 |
|
|
|
|
* |
|
|
|
|
* @param landListedVo 已挂牌地块参数 |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "修改已挂牌地块", notes = "修改已挂牌地块") |
|
|
|
|
@PutMapping |
|
|
|
|
public R<Boolean> updateLandListed(@RequestBody LandListedVo landListedVo) { |
|
|
|
|
LandListed landListed = new LandListed(); |
|
|
|
|
BeanUtil.copyProperties(landListedVo, landListed); |
|
|
|
|
return R.ok(landListedService.updateById(landListed)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 通过id删除已挂牌地块。 |
|
|
|
|
* |
|
|
|
@ -189,7 +206,7 @@ public class LandListedController {
|
|
|
|
|
List<List<String>> landList = landListedService.getLandList(ids); |
|
|
|
|
InputStream resourceAsStream = LandListedController.class.getClassLoader().getResourceAsStream("templates/excel/exportLandList.xlsx"); |
|
|
|
|
// 读取excel模板
|
|
|
|
|
XSSFWorkbook wb = ExcelUtil.exportExcel(landList,resourceAsStream); |
|
|
|
|
XSSFWorkbook wb = ExcelUtil.exportLandListedExcel(landList,resourceAsStream); |
|
|
|
|
response.setContentType("application/vnd.ms-excel;charset=utf-8"); |
|
|
|
|
response.setHeader("Content-Disposition", "attachment;filename=report.xlsx"); |
|
|
|
|
OutputStream outputStream = response.getOutputStream(); |
|
|
|
|