|
|
|
@ -7,6 +7,7 @@ import com.air.land.entity.LandToList;
|
|
|
|
|
import com.air.land.service.LandToListService; |
|
|
|
|
import com.air.land.vo.LandListedPageVo; |
|
|
|
|
import com.air.land.vo.LandToListVo; |
|
|
|
|
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; |
|
|
|
@ -26,6 +27,7 @@ import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.io.InputStream; |
|
|
|
|
import java.io.OutputStream; |
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -85,21 +87,39 @@ public class LandToListController {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 保存拟挂牌地块 |
|
|
|
|
* 新增拟挂牌地块 |
|
|
|
|
* |
|
|
|
|
* @param landToListVo 拟挂牌地块 |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "保存拟挂牌地块(新增,修改)", notes = "新增拟挂牌地块(传id为修改,不传为新增)") |
|
|
|
|
@ApiOperation(value = "新增拟挂牌地块", notes = "新增拟挂牌地块") |
|
|
|
|
@PostMapping |
|
|
|
|
public R savelandToList(@RequestBody @Validated LandToListVo landToListVo) { |
|
|
|
|
public R addlandToList(@RequestBody LandToListVo landToListVo) { |
|
|
|
|
LandToList landToList = new LandToList(); |
|
|
|
|
BeanUtil.copyProperties(landToListVo, landToList); |
|
|
|
|
landToList.setProposedseriaId(DateUtil.landListedIdfromDate(LocalDateTime.now(),"yyyyMMddHHmmssSSS")); |
|
|
|
|
landToList.setStatusCd(Constant.LAND_TO_STATUS_1000); |
|
|
|
|
landToListService.saveOrUpdate(landToList); |
|
|
|
|
landToListService.save(landToList); |
|
|
|
|
return R.ok(landToList.getProposedseriaId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 修改拟挂牌地块 |
|
|
|
|
* |
|
|
|
|
* @param landToListVo 拟挂牌地块 |
|
|
|
|
* @return R |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "修改拟挂牌地块", notes = "修改拟挂牌地块") |
|
|
|
|
@PutMapping |
|
|
|
|
public R updatelandToList(@RequestBody LandToListVo landToListVo) { |
|
|
|
|
if (StringUtils.isEmpty(landToListVo.getProposedseriaId())){ |
|
|
|
|
return R.failed("id不能为空"); |
|
|
|
|
} |
|
|
|
|
LandToList landToList = new LandToList(); |
|
|
|
|
BeanUtil.copyProperties(landToListVo, landToList); |
|
|
|
|
return R.ok(landToListService.updateById(landToList)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 通过id删除拟挂牌地块。 |
|
|
|
|
* |
|
|
|
|