|
|
@ -11,6 +11,7 @@ import com.cinderella.framework.common.core.util.R; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
@ -56,12 +57,12 @@ public class LandListedLonLatController { |
|
|
|
@ApiOperation(value = "新增已挂牌地块经纬度", notes = "新增已挂牌地块经纬度") |
|
|
|
@ApiOperation(value = "新增已挂牌地块经纬度", notes = "新增已挂牌地块经纬度") |
|
|
|
@PostMapping |
|
|
|
@PostMapping |
|
|
|
public R save(@RequestBody @Validated LandListedLonLatVo landListedLonLatVo) { |
|
|
|
public R save(@RequestBody @Validated LandListedLonLatVo landListedLonLatVo) { |
|
|
|
List<LandListedLonLat> list = landListedLonLatService.list(Wrappers.<LandListedLonLat>query().lambda() |
|
|
|
/*List<LandListedLonLat> list = landListedLonLatService.list(Wrappers.<LandListedLonLat>query().lambda() |
|
|
|
.eq(LandListedLonLat::getLandListedId, landListedLonLatVo.getLandListedId()) |
|
|
|
.eq(LandListedLonLat::getLandListedId, landListedLonLatVo.getLandListedId()) |
|
|
|
.eq(LandListedLonLat::getLandCode, landListedLonLatVo.getLandCode())); |
|
|
|
.eq(LandListedLonLat::getLandCode, landListedLonLatVo.getLandCode())); |
|
|
|
if (CollectionUtil.isNotEmpty(list)) { |
|
|
|
if (CollectionUtil.isNotEmpty(list)) { |
|
|
|
return R.failed("地块编号已存在"); |
|
|
|
return R.failed("地块编号已存在"); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
LandListedLonLat landListedLonLat = new LandListedLonLat(); |
|
|
|
LandListedLonLat landListedLonLat = new LandListedLonLat(); |
|
|
|
BeanUtil.copyProperties(landListedLonLatVo, landListedLonLat); |
|
|
|
BeanUtil.copyProperties(landListedLonLatVo, landListedLonLat); |
|
|
|
return R.ok(landListedLonLatService.save(landListedLonLat), "保存成功"); |
|
|
|
return R.ok(landListedLonLatService.save(landListedLonLat), "保存成功"); |
|
|
@ -76,11 +77,14 @@ public class LandListedLonLatController { |
|
|
|
@ApiOperation(value = "修改拟挂牌地块经纬度", notes = "修改拟挂牌地块经纬度") |
|
|
|
@ApiOperation(value = "修改拟挂牌地块经纬度", notes = "修改拟挂牌地块经纬度") |
|
|
|
@PutMapping |
|
|
|
@PutMapping |
|
|
|
public R update(@RequestBody @Validated LandListedLonLatVo landListedLonLatVo) { |
|
|
|
public R update(@RequestBody @Validated LandListedLonLatVo landListedLonLatVo) { |
|
|
|
List<LandListedLonLat> list = landListedLonLatService.list(Wrappers.<LandListedLonLat>query().lambda() |
|
|
|
/*List<LandListedLonLat> list = landListedLonLatService.list(Wrappers.<LandListedLonLat>query().lambda() |
|
|
|
.eq(LandListedLonLat::getLandListedId, landListedLonLatVo.getLandListedId()) |
|
|
|
.eq(LandListedLonLat::getLandListedId, landListedLonLatVo.getLandListedId()) |
|
|
|
.eq(LandListedLonLat::getLandCode, landListedLonLatVo.getLandCode())); |
|
|
|
.eq(LandListedLonLat::getLandCode, landListedLonLatVo.getLandCode())); |
|
|
|
if (CollectionUtil.isNotEmpty(list)) { |
|
|
|
if (CollectionUtil.isNotEmpty(list)) { |
|
|
|
return R.failed("地块编号已存在"); |
|
|
|
return R.failed("地块编号已存在"); |
|
|
|
|
|
|
|
}*/ |
|
|
|
|
|
|
|
if (landListedLonLatVo.getLatId() == null){ |
|
|
|
|
|
|
|
return R.failed("经纬度id不能为空"); |
|
|
|
} |
|
|
|
} |
|
|
|
LandListedLonLat landListedLonLat = new LandListedLonLat(); |
|
|
|
LandListedLonLat landListedLonLat = new LandListedLonLat(); |
|
|
|
BeanUtil.copyProperties(landListedLonLatVo, landListedLonLat); |
|
|
|
BeanUtil.copyProperties(landListedLonLatVo, landListedLonLat); |
|
|
|