39 changed files with 1317 additions and 184 deletions
@ -0,0 +1,52 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import com.air.land.entity.AuctionRecord; |
||||
import com.air.land.service.AuctionRecordService; |
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.cinderella.framework.common.data.mybatis.QueryPage; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.validation.annotation.Validated; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
|
||||
/** |
||||
* 小程序竞拍记录管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:39:41 |
||||
*/ |
||||
@RestController("applets_auctionRecordController") |
||||
@AllArgsConstructor |
||||
@Validated |
||||
@RequestMapping("/applets/auctionRecord") |
||||
@Api(value = "auctionRecord", tags = "小程序竞拍记录管理") |
||||
public class AuctionRecordController { |
||||
|
||||
private final AuctionRecordService auctionRecordService; |
||||
|
||||
/** |
||||
* 查询参拍记录列表 |
||||
* |
||||
* @param landListedId 已挂牌地块标识 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "查询参拍记录列表", notes = "查询参拍记录列表") |
||||
@GetMapping("/list") |
||||
public R<IPage<AuctionRecord>> getAuctionRecordPage(QueryPage page, @RequestParam(required = false) String landListedId) { |
||||
LambdaQueryWrapper<AuctionRecord> lambda = Wrappers.<AuctionRecord>query().lambda(); |
||||
if (landListedId != null) { |
||||
lambda.eq(AuctionRecord::getLandListedId, landListedId); |
||||
} |
||||
IPage<AuctionRecord> recordPage = auctionRecordService.page(page.toPage(), |
||||
lambda.orderByDesc(AuctionRecord::getUpdateDate)); |
||||
return R.ok(recordPage, "查询成功"); |
||||
} |
||||
} |
@ -0,0 +1,76 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import cn.hutool.core.date.DateUtil; |
||||
import com.air.applets.dto.BlocksPreSaleTotalDto; |
||||
import com.air.housing.service.BlocksService; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序楼盘信息管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:39:45 |
||||
*/ |
||||
@RestController("applets_blocksController") |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/blocks") |
||||
@Api(value = "blocks", tags = "小程序楼盘信息管理") |
||||
public class BlocksController { |
||||
|
||||
private final BlocksService blocksService; |
||||
|
||||
/** |
||||
* 销售情况统计 |
||||
* |
||||
* @param landListedId 已挂牌地块id |
||||
* @param transactionStatus 交易状态 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "销售情况统计", notes = "销售情况统计") |
||||
@GetMapping("getPreSaleTotal") |
||||
public R<BlocksPreSaleTotalDto> getPreSaleTotal(@RequestParam String landListedId, @RequestParam String transactionStatus) { |
||||
BlocksPreSaleTotalDto preSaleTotalDto = new BlocksPreSaleTotalDto(); |
||||
preSaleTotalDto.setPreSaleTotal(200); |
||||
preSaleTotalDto.setDestroyTotal(58); |
||||
preSaleTotalDto.setDestroyTotalRate(25.6d); |
||||
preSaleTotalDto.setPreSaleBusinessPrice(13555.6); |
||||
preSaleTotalDto.setPreSaleHousePrice(15680.2); |
||||
return R.ok(preSaleTotalDto); |
||||
} |
||||
|
||||
/** |
||||
* 查询预售明细列表 |
||||
* |
||||
* @param landListedId 已挂牌地块id |
||||
* @param transactionStatus 交易状态 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "查询预售明细列表", notes = "查询预售明细列表") |
||||
@GetMapping("getPreSaleDetailList") |
||||
public R<List<BlocksPreSaleTotalDto>> getPreSaleDetailList(@RequestParam String landListedId, @RequestParam String transactionStatus) { |
||||
List<BlocksPreSaleTotalDto> list = new ArrayList<>(); |
||||
for (int i = 1; i<6;i++){ |
||||
BlocksPreSaleTotalDto preSaleTotalDto = new BlocksPreSaleTotalDto(); |
||||
preSaleTotalDto.setPreSaleTotal(200); |
||||
preSaleTotalDto.setDestroyTotal(58); |
||||
preSaleTotalDto.setDestroyTotalRate(25.6d); |
||||
preSaleTotalDto.setPreSaleLicenseNo("2021070"+i+"号"); |
||||
preSaleTotalDto.setEvidenceDate(DateUtil.formatDate(new Date())); |
||||
list.add(preSaleTotalDto); |
||||
} |
||||
return R.ok(list); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import com.air.land.entity.LandAttachment; |
||||
import com.air.land.service.LandAttachmentService; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序已挂牌地块资料文件信息管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:39:41 |
||||
*/ |
||||
@RestController("applets_landAttachmentController") |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/landAttachment") |
||||
@Api(value = "landAttachment", tags = "小程序已挂牌地块资料文件信息管理") |
||||
public class LandAttachmentController { |
||||
|
||||
private final LandAttachmentService attachmentService; |
||||
|
||||
/** |
||||
* 通过序号和文件类型查询文件列表 |
||||
* |
||||
* @param landListedId 已挂牌地块标识 |
||||
* @param fileType 文件类型 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "通过序号和文件类型查询文件列表", notes = "通过序号和文件类型查询文件列表") |
||||
@GetMapping |
||||
public R<List<LandAttachment>> getAuctionRecordPage(@RequestParam String landListedId, String fileType) { |
||||
return attachmentService.getListAttachment(landListedId, fileType); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,149 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import cn.hutool.core.util.StrUtil; |
||||
import com.air.applets.dto.LandDto; |
||||
import com.air.applets.vo.LandVo; |
||||
import com.air.enums.LandListStatusEnum; |
||||
import com.air.land.dto.LandListedDto; |
||||
import com.air.land.dto.LandListedStatisticsDto; |
||||
import com.air.land.entity.LandListed; |
||||
import com.air.land.service.LandListedService; |
||||
import com.air.land.service.LandToListService; |
||||
import com.air.land.vo.LandListedAppletsVo; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.cinderella.framework.common.data.mybatis.QueryPage; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import org.apache.commons.lang3.StringUtils; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 已挂牌地块。 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:39:59 |
||||
*/ |
||||
@RestController("applets_landListedController") |
||||
@RequestMapping("/applets/landlisted") |
||||
@Api(value = "landlisted", tags = "小程序已挂牌地块据管理") |
||||
public class LandListedController { |
||||
|
||||
@Autowired |
||||
private LandListedService landListedService; |
||||
|
||||
@Autowired |
||||
private LandToListService landToListService; |
||||
|
||||
/** |
||||
* 地块列表分页查询 |
||||
* |
||||
* @param queryPage 分页对象 |
||||
* @param landVo 查询参数 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "地块列表分页查询", notes = "地块列表分页查询") |
||||
@GetMapping("page") |
||||
public R<Page<LandDto>> getLandListedPage(QueryPage queryPage, LandVo landVo) { |
||||
List<LandDto> landDtos; |
||||
Page<LandDto> page = queryPage.toPage(); |
||||
if (LandListStatusEnum.TO_BE_LISTED.getCode().equals(landVo.getTransactionStatus())) { |
||||
if (StrUtil.isNotEmpty(landVo.getStartDate()) || StrUtil.isNotEmpty(landVo.getEndDate())) { |
||||
return R.ok(); |
||||
} |
||||
//交易状态为 待挂牌时,查询拟挂牌地块数据
|
||||
landDtos = landToListService.appletsLandToList(page, landVo); |
||||
} else { |
||||
landDtos = landListedService.appletsLandListed(page, landVo); |
||||
} |
||||
return R.ok(page.setRecords(landDtos), "查询成功"); |
||||
} |
||||
|
||||
/** |
||||
* 查询已挂牌地块信息列表 |
||||
* |
||||
* @param appletsVo 查询参数 |
||||
* @return R |
||||
*/ |
||||
/*@ApiOperation(value = "查询已挂牌地块信息列表", notes = "查询已挂牌地块信息列表") |
||||
@GetMapping("/list") |
||||
public R<Page<LandListedDto>> getLandListedByDate(QueryPage page, LandListedAppletsVo appletsVo) { |
||||
if (StringUtils.isEmpty(appletsVo.getAnnoDate()) && StringUtils.isEmpty(appletsVo.getAuctionDate())) { |
||||
return R.failed("公告日期或拍卖日期为空"); |
||||
} |
||||
if (StringUtils.isNotEmpty(appletsVo.getAnnoDate()) && StringUtils.isNotEmpty(appletsVo.getAuctionDate())) { |
||||
return R.failed("公告日期和拍卖日期只填之一"); |
||||
} |
||||
return landListedService.getLandListedByDate(page, appletsVo); |
||||
}*/ |
||||
|
||||
/** |
||||
* 已挂牌地块详细查询接口 |
||||
* |
||||
* @param landListedId |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "已挂牌地块详细查询接口", notes = "通过id已挂牌地块详细查询接口") |
||||
@GetMapping("/{landListedId}") |
||||
public R<LandListed> getById(@PathVariable("landListedId") String landListedId) { |
||||
return R.ok(landListedService.getById(landListedId)); |
||||
} |
||||
|
||||
/** |
||||
* 按日期统计地块数量 |
||||
* |
||||
* @param appletsVo 查询参数 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "按日期统计地块数量", notes = "按日期统计地块数量") |
||||
@GetMapping("/statistics") |
||||
public R<LandListedStatisticsDto> appletsStatistics(LandListedAppletsVo appletsVo) { |
||||
if (StringUtils.isEmpty(appletsVo.getDate())) { |
||||
return R.failed("查询日期不能为空"); |
||||
} |
||||
return landListedService.appletsStatistics(appletsVo); |
||||
} |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,45 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import com.air.land.entity.LandListedLonLat; |
||||
import com.air.land.service.LandListedLonLatService; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序已挂牌地块经纬度管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:40:04 |
||||
*/ |
||||
@RestController("applets_landListedLonLatController") |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/landlistedlonlat") |
||||
@Api(value = "landlistedlonlat", tags = "小程序已挂牌地块经纬度管理") |
||||
public class LandListedLonLatController { |
||||
|
||||
private final LandListedLonLatService landListedLonLatService; |
||||
|
||||
/** |
||||
* 经纬度列表查询 |
||||
* |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "通过公告序号经纬度列表查询", notes = "通过公告序号经纬度列表查询") |
||||
@GetMapping("/list/{landListedId}") |
||||
public R<List<LandListedLonLat>> getLandListedLonLatPage(@PathVariable String landListedId) { |
||||
List<LandListedLonLat> list = landListedLonLatService.list(Wrappers.<LandListedLonLat>query().lambda() |
||||
.eq(LandListedLonLat::getLandListedId, landListedId) |
||||
.orderByDesc(LandListedLonLat::getUpdateDate)); |
||||
return R.ok(list, "查询成功"); |
||||
} |
||||
} |
@ -0,0 +1,44 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import com.air.land.entity.LandToListAttachment; |
||||
import com.air.land.service.LandToListAttachmentService; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序拟挂牌地块资料文件信息管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:39:41 |
||||
*/ |
||||
@RestController("applets_landToListAttachmentController") |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/landToListAttachment") |
||||
@Api(value = "landToListAttachment", tags = "小程序拟挂牌地块资料文件信息管理") |
||||
public class LandToListAttachmentController { |
||||
|
||||
private final LandToListAttachmentService attachmentService; |
||||
|
||||
/** |
||||
* 通过序号和文件类型查询文件列表 |
||||
* |
||||
* @param proposedseriaId 拟公告序号 |
||||
* @param fileType 文件类型 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "通过序号和文件类型查询文件列表", notes = "通过序号和文件类型查询文件列表") |
||||
@GetMapping |
||||
public R<List<LandToListAttachment>> getListToListAttachment(@RequestParam String proposedseriaId, String fileType) { |
||||
return attachmentService.getListAttachment(proposedseriaId, fileType); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,93 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import cn.hutool.core.util.ObjectUtil; |
||||
import com.air.land.entity.LandToList; |
||||
import com.air.land.service.LandToListService; |
||||
import com.air.land.vo.LandToListPageVo; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.cinderella.framework.common.data.mybatis.QueryPage; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import org.apache.commons.lang3.StringUtils; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
|
||||
/** |
||||
* 小程序拟挂牌地块管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:40:09 |
||||
*/ |
||||
@RestController("applets_landToListController") |
||||
@RequestMapping("/applets/landtolist") |
||||
@Api(value = "landtolist", tags = "小程序拟挂牌地块管理") |
||||
public class LandToListController { |
||||
|
||||
@Autowired |
||||
private LandToListService landToListService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* |
||||
* @param page 分页对象 |
||||
* @param pageVo 拟挂牌地块。 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping |
||||
public R<Page<LandToList>> getLandToListPage(QueryPage page, LandToListPageVo pageVo) { |
||||
Page<LandToList> result = landToListService.page(page.toPage(), Wrappers.<LandToList>query().lambda() |
||||
//地块名称
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getLandName()), LandToList::getLandName, pageVo.getLandName()) |
||||
//供地状态
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getSupplyStatus()), LandToList::getSupplyStatus, pageVo.getSupplyStatus()) |
||||
//预计挂牌时间
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getEstimatedListingTime()), LandToList::getEstimatedListingTime, pageVo.getEstimatedListingTime()) |
||||
//地块编号
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getLandCode()), LandToList::getLandCode, pageVo.getLandCode()) |
||||
//土地用途
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getLandUsage()), LandToList::getLandUsage, pageVo.getLandUsage()) |
||||
//地质灾害
|
||||
.eq(ObjectUtil.isNotEmpty(pageVo.getGeologicHazard()), LandToList::getGeologicHazard, pageVo.getGeologicHazard()) |
||||
//人防还建
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getCivilAirDefence()), LandToList::getCivilAirDefence, pageVo.getCivilAirDefence()) |
||||
//特殊规划
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getSpecialPlan()), LandToList::getSpecialPlan, pageVo.getSpecialPlan()) |
||||
//勾地形式
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getHookForm()), LandToList::getHookForm, pageVo.getHookForm()) |
||||
//勾地企业
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getLandEnterprises()), LandToList::getLandEnterprises, pageVo.getLandEnterprises()) |
||||
//出让人
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getBargainor()), LandToList::getBargainor, pageVo.getBargainor()) |
||||
//城市
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getCity()), LandToList::getCity, pageVo.getCity()) |
||||
//行政区
|
||||
.eq(StringUtils.isNotEmpty(pageVo.getCanton()), LandToList::getCanton, pageVo.getCanton()) |
||||
//大组团
|
||||
.like(StringUtils.isNotEmpty(pageVo.getBigGroup()), LandToList::getBigGroup, pageVo.getBigGroup()) |
||||
//小组团
|
||||
.like(StringUtils.isNotEmpty(pageVo.getSmallGroup()), LandToList::getSmallGroup, pageVo.getSmallGroup()) |
||||
.orderByDesc(LandToList::getUpdateDate)); |
||||
return R.ok(result, "查询成功"); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询拟挂牌地块。 |
||||
* |
||||
* @param id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{id}") |
||||
public R<LandToList> getById(@PathVariable("id") String id) { |
||||
return R.ok(landToListService.getById(id)); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import com.air.land.entity.LandToListLonLat; |
||||
import com.air.land.service.LandToListLonLatService; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序拟挂牌地块经纬度 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:40:15 |
||||
*/ |
||||
@RestController("applets_landToListLonLatController") |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/landtolistlonlat") |
||||
@Api(value = "landtolistlonlat", tags = "小程序拟挂牌地块经纬度管理") |
||||
public class LandToListLonLatController { |
||||
|
||||
private final LandToListLonLatService landToListLonLatService; |
||||
|
||||
/** |
||||
* 通过拟公告序号经纬度列表查询 |
||||
* |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "通过拟公告序号经纬度列表查询", notes = "通过拟公告序号经纬度列表查询") |
||||
@GetMapping("/list/{proposedseriaId}") |
||||
public R<List<LandToListLonLat>> getLandListedLonLatPage(@PathVariable String proposedseriaId) { |
||||
List<LandToListLonLat> list = landToListLonLatService.list(Wrappers.<LandToListLonLat>query().lambda() |
||||
.eq(LandToListLonLat::getProposedseriaId, proposedseriaId)); |
||||
return R.ok(list, "查询成功"); |
||||
} |
||||
} |
@ -0,0 +1,142 @@
|
||||
package com.air.applets.controller; |
||||
|
||||
import cn.hutool.core.bean.BeanUtil; |
||||
import cn.hutool.core.util.StrUtil; |
||||
import com.air.applets.dto.MeasureStatisticsDto; |
||||
import com.air.applets.dto.MeasureSubmitDto; |
||||
import com.air.applets.dto.MeasureTrendDto; |
||||
import com.air.applets.entity.MeasureData; |
||||
import com.air.applets.serivce.MeasureDataService; |
||||
import com.air.applets.vo.MeasureDataVo; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.cinderella.framework.common.security.util.SecurityUtils; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 小程序测算数据管理 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:40:33 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/applets/measuredata") |
||||
@Api(value = "measuredata", tags = "小程序测算数据管理") |
||||
public class MeasureDataController { |
||||
|
||||
private final MeasureDataService measureDataService; |
||||
|
||||
/** |
||||
* 测算记录列表 |
||||
* |
||||
* @param page 分页对象 |
||||
* @param measureData 测算数据 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "测算记录列表分页查询", notes = "测算记录列表分页查询") |
||||
@GetMapping("/page") |
||||
public R getMeasureDataPage(Page page, MeasureData measureData) { |
||||
measureData.setCreateUserId(SecurityUtils.getUser().getId().toString()); |
||||
return R.ok(measureDataService.page(page, Wrappers.query(measureData))); |
||||
} |
||||
|
||||
/** |
||||
* 通过id查询测算数据 |
||||
* |
||||
* @param measureDataId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询测算详情", notes = "通过id查询测算详情") |
||||
@GetMapping("/{measureDataId}") |
||||
public R getById(@PathVariable("measureDataId") Long measureDataId) { |
||||
return R.ok(measureDataService.getById(measureDataId)); |
||||
} |
||||
|
||||
/** |
||||
* 保存测算数据 |
||||
* |
||||
* @param measureDataVo 测算数据 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "保存测算数据", notes = "保存测算数据") |
||||
@PostMapping |
||||
public R<Boolean> save(@RequestBody MeasureDataVo measureDataVo) { |
||||
if (StrUtil.isEmpty(measureDataVo.getLandListedId()) && StrUtil.isEmpty(measureDataVo.getProposedseriaId())) { |
||||
return R.failed("地块id不能为空"); |
||||
} |
||||
if (StrUtil.isNotEmpty(measureDataVo.getLandListedId()) && StrUtil.isNotEmpty(measureDataVo.getProposedseriaId())) { |
||||
return R.failed("已挂牌地块标识和拟挂牌地块标识选填其一!"); |
||||
} |
||||
if (null == measureDataVo.getMeasureDataId()) { |
||||
MeasureData measureData; |
||||
if (null == measureDataVo.getLandListedId()) { |
||||
measureData = measureDataService.getOne(Wrappers.<MeasureData>query().lambda() |
||||
.eq(MeasureData::getProposedseriaId, measureDataVo.getProposedseriaId())); |
||||
} else { |
||||
measureData = measureDataService.getOne(Wrappers.<MeasureData>query().lambda() |
||||
.eq(MeasureData::getLandListedId, measureDataVo.getLandListedId())); |
||||
} |
||||
if (null != measureData) { |
||||
return R.failed("该地块已存在测算数据,不能再次新增"); |
||||
} |
||||
} |
||||
MeasureData measureData = new MeasureData(); |
||||
BeanUtil.copyProperties(measureDataVo, measureData); |
||||
measureData.setCreateUserId(SecurityUtils.getUser().getId().toString()); |
||||
return R.ok(measureDataService.saveOrUpdate(measureData)); |
||||
} |
||||
|
||||
/** |
||||
* 提交测算数据 |
||||
* |
||||
* @param measureDataVo 测算数据 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "提交测算数据", notes = "提交测算数据") |
||||
@PostMapping("submit") |
||||
public R<MeasureSubmitDto> submit(@RequestBody MeasureDataVo measureDataVo) { |
||||
return R.ok(new MeasureSubmitDto()); |
||||
} |
||||
|
||||
/** |
||||
* 查询用户测算结果统计 |
||||
* |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "测算结果统计", notes = "测算结果统计") |
||||
@GetMapping("/statistics") |
||||
public R<MeasureStatisticsDto> statistics() { |
||||
return R.ok(measureDataService.statistics()); |
||||
} |
||||
|
||||
/** |
||||
* 查询用户测算趋势统计 |
||||
* |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "测算趋势统计", notes = "测算趋势统计") |
||||
@GetMapping("/trend") |
||||
public R<List<MeasureTrendDto>> trend() { |
||||
return R.ok(measureDataService.trend()); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除测算数据 |
||||
* |
||||
* @param measureDataId 测算数据id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除测算数据", notes = "通过id删除测算数据") |
||||
@DeleteMapping("/{measureDataId}") |
||||
public R<Boolean> removeById(@PathVariable Long measureDataId) { |
||||
return R.ok(measureDataService.removeById(measureDataId)); |
||||
} |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.air.applets.dto; |
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 房屋销售合计 |
||||
* |
||||
* @author peihao |
||||
* @date 2021/5/18 |
||||
**/ |
||||
@Data |
||||
@ApiModel(value = "房屋销售合计") |
||||
public class BlocksPreSaleTotalDto { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "合计预售") |
||||
private int preSaleTotal; |
||||
|
||||
@ApiModelProperty(value = "去化") |
||||
private int destroyTotal; |
||||
|
||||
@ApiModelProperty(value = "去化率") |
||||
private double destroyTotalRate; |
||||
|
||||
@ApiModelProperty(value = "预售住宅均价") |
||||
private double preSaleHousePrice; |
||||
|
||||
@ApiModelProperty(value = "预售商业均价") |
||||
private double preSaleBusinessPrice; |
||||
|
||||
@ApiModelProperty(value = "预售明细") |
||||
private String preSaleLicenseNo; |
||||
|
||||
@ApiModelProperty(value = "取证时间") |
||||
private String evidenceDate; |
||||
|
||||
} |
@ -0,0 +1,212 @@
|
||||
package com.air.applets.dto; |
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotBlank; |
||||
import java.time.LocalDate; |
||||
|
||||
/** |
||||
* 小程序地块列表 |
||||
* |
||||
* @author peihao |
||||
* @date 2021/5/18 |
||||
**/ |
||||
@Data |
||||
@ApiModel(value = "小程序地块列表") |
||||
public class LandDto { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "主键") |
||||
private String landListedId; |
||||
|
||||
@NotBlank(message = "公告id不能为空") |
||||
private String annoId; |
||||
|
||||
@NotBlank(message = "地块编号不能为空") |
||||
private String landCode; |
||||
|
||||
@NotBlank(message = "地块位置不能为空") |
||||
private String landPosition; |
||||
|
||||
@ApiModelProperty(value = "土地用途") |
||||
private String landUsage; |
||||
|
||||
@ApiModelProperty(value = "土地出让面积-平方") |
||||
private String landTransferSquare; |
||||
|
||||
@ApiModelProperty(value = "土地出让面积-亩") |
||||
private String landTransferMu; |
||||
|
||||
@ApiModelProperty(value = "总计容建筑面积") |
||||
private String totalConsArea; |
||||
|
||||
@ApiModelProperty(value = "容积率") |
||||
private String plotRatio; |
||||
|
||||
@ApiModelProperty(value = "建筑密度") |
||||
private String buildingDensity; |
||||
|
||||
@ApiModelProperty(value = "绿地率") |
||||
private String greenSpaceRatio; |
||||
|
||||
@ApiModelProperty(value = "限高") |
||||
private String heighPermitted; |
||||
|
||||
@ApiModelProperty(value = "出让年限") |
||||
private String remiseYears; |
||||
|
||||
@ApiModelProperty(value = "出让价款起始价(万元)") |
||||
private String transferPrice; |
||||
|
||||
@ApiModelProperty(value = "起始楼面价") |
||||
private String startingFloorPrice; |
||||
|
||||
@ApiModelProperty(value = "竞买保证金(万元)") |
||||
private String bidMargin; |
||||
|
||||
@ApiModelProperty(value = "备注(业务字段)") |
||||
private String bizRemark; |
||||
|
||||
@ApiModelProperty(value = "公告日期") |
||||
private LocalDate annoDate; |
||||
|
||||
@ApiModelProperty(value = "拍卖日期") |
||||
private LocalDate auctionDate; |
||||
|
||||
@ApiModelProperty(value = "持证准用面积") |
||||
private String licensedArea; |
||||
|
||||
@ApiModelProperty(value = "商业面积") |
||||
private String bizSpace; |
||||
|
||||
@ApiModelProperty(value = "商务面积") |
||||
private String commerceSpace; |
||||
|
||||
@ApiModelProperty(value = "配建-计容") |
||||
private String allocationCapacity; |
||||
|
||||
@ApiModelProperty(value = "配建-不计容") |
||||
private String allocationNotCapacity; |
||||
|
||||
@ApiModelProperty(value = "地质灾害") |
||||
private String geologicHazard; |
||||
|
||||
@ApiModelProperty(value = "人防还建(㎡)") |
||||
private String civilAirDefence; |
||||
|
||||
@ApiModelProperty(value = "特殊规划") |
||||
private String specialPlan; |
||||
|
||||
@ApiModelProperty(value = "装配建筑") |
||||
private String assemblyBuilding; |
||||
|
||||
@ApiModelProperty(value = "绿色建筑") |
||||
private String greenBuilding; |
||||
|
||||
@ApiModelProperty(value = "其他条件") |
||||
private String otherConditions; |
||||
|
||||
@ApiModelProperty(value = "成品住宅比例") |
||||
private String percentFinishedHousing; |
||||
|
||||
@ApiModelProperty(value = "竞买条件") |
||||
private String biddingConditions; |
||||
|
||||
@ApiModelProperty(value = "勾地形式") |
||||
private String hookForm; |
||||
|
||||
@ApiModelProperty(value = "一级治理方") |
||||
private String firstGovernance; |
||||
|
||||
@ApiModelProperty(value = "勾地企业") |
||||
private String landEnterprises; |
||||
|
||||
@ApiModelProperty(value = "付款节奏") |
||||
private String paymentRhythm; |
||||
|
||||
@ApiModelProperty(value = "出让人") |
||||
private String bargainor; |
||||
|
||||
@ApiModelProperty(value = "城市") |
||||
private String city; |
||||
|
||||
@ApiModelProperty(value = "行政区") |
||||
private String canton; |
||||
|
||||
@ApiModelProperty(value = "特区") |
||||
private String specialZone; |
||||
|
||||
@ApiModelProperty(value = "环线") |
||||
private String loopWire; |
||||
|
||||
@ApiModelProperty(value = "大组团") |
||||
private String bigGroup; |
||||
|
||||
@ApiModelProperty(value = "小组团") |
||||
private String smallGroup; |
||||
|
||||
@ApiModelProperty(value = "奥维定位") |
||||
private String ovePosition; |
||||
|
||||
@ApiModelProperty(value = "经纬度(百度BD09)") |
||||
private String lonLatBd; |
||||
|
||||
@ApiModelProperty(value = "出让方式") |
||||
private String transferMode; |
||||
|
||||
@ApiModelProperty(value = "受让单位") |
||||
private String assignee; |
||||
|
||||
@ApiModelProperty(value = "拿地企业-简称") |
||||
private String landEnterpriseShort; |
||||
|
||||
@ApiModelProperty(value = "成交价") |
||||
private String dealPrice; |
||||
|
||||
@ApiModelProperty(value = "溢价率") |
||||
private String premiumRate; |
||||
|
||||
@ApiModelProperty(value = "商业自持比例(%)") |
||||
private String commercialSelfRatio; |
||||
|
||||
@ApiModelProperty(value = "住宅自持比例(%)") |
||||
private String homeSelfRatio; |
||||
|
||||
@ApiModelProperty(value = "无偿比例(%)") |
||||
private String percentUnpaid; |
||||
|
||||
@ApiModelProperty(value = "人才公寓面积") |
||||
private String talenApartmentArea; |
||||
|
||||
@ApiModelProperty(value = "参拍企业") |
||||
private String participatingEnterprises; |
||||
|
||||
@ApiModelProperty(value = "项目状态") |
||||
private String projectStatus; |
||||
|
||||
@ApiModelProperty(value = "楼盘名称") |
||||
private String buildingName; |
||||
|
||||
@ApiModelProperty(value = "项目公司") |
||||
private String projectCompany; |
||||
|
||||
@ApiModelProperty(value = "确权时间") |
||||
private LocalDate confirmationTime; |
||||
|
||||
@ApiModelProperty(value = "操盘企业") |
||||
private String tradingEnterprises; |
||||
|
||||
@ApiModelProperty(value = "合作方") |
||||
private String partner; |
||||
|
||||
@ApiModelProperty(value = "经营企业") |
||||
private String conductEnterprise; |
||||
|
||||
@ApiModelProperty(value = "项目首开时间") |
||||
private LocalDate firstOpenTime; |
||||
|
||||
@ApiModelProperty(value = "是否待挂牌(1:是,0:否)") |
||||
private String isToBeListed; |
||||
} |
@ -1,11 +1,9 @@
|
||||
package com.air.measuredata.dto; |
||||
package com.air.applets.dto; |
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
/** |
||||
* 测算结果统计 |
||||
* |
@ -0,0 +1,25 @@
|
||||
package com.air.applets.dto; |
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
/** |
||||
* 提交测算数据返回参数 |
||||
* |
||||
* @author peihao |
||||
* @date 2021/5/18 |
||||
**/ |
||||
@Data |
||||
@ApiModel(value = "提交测算数据返回参数") |
||||
public class MeasureSubmitDto { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "净利率") |
||||
private BigDecimal netProfitRatio; |
||||
|
||||
@ApiModelProperty(value = "溢价率") |
||||
private BigDecimal premiumRate; |
||||
} |
@ -0,0 +1,43 @@
|
||||
package com.air.applets.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotBlank; |
||||
import java.time.LocalDate; |
||||
|
||||
/** |
||||
* 小程序地块列表 |
||||
* |
||||
* @author peihao |
||||
* @date 2021/5/18 |
||||
**/ |
||||
@Data |
||||
@ApiModel(value = "小程序地块列表") |
||||
public class LandVo { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "成交开始时间") |
||||
private String startDate; |
||||
|
||||
@NotBlank(message = "成交结束时间") |
||||
private String endDate; |
||||
|
||||
@NotBlank(message = "交易状态") |
||||
private String transactionStatus; |
||||
|
||||
@ApiModelProperty(value = "城市") |
||||
private String city; |
||||
|
||||
@ApiModelProperty(value = "行政区") |
||||
private String canton; |
||||
|
||||
@ApiModelProperty(value = "测算状态") |
||||
private String measureStatus; |
||||
|
||||
@JsonIgnore |
||||
@ApiModelProperty(value = "查询当前时间",hidden = true) |
||||
private String nowDate; |
||||
} |
@ -0,0 +1,31 @@
|
||||
package com.air.enums; |
||||
|
||||
/** |
||||
* 测算数据状态 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-20 |
||||
**/ |
||||
public enum MeasureStatusEnum { |
||||
|
||||
TO_MEASURE("toMeasure","待测算"), |
||||
MEASURED("measured","已测算"); |
||||
|
||||
|
||||
private final String code; |
||||
|
||||
private final String name; |
||||
|
||||
MeasureStatusEnum(String code, String name){ |
||||
this.code = code; |
||||
this.name = name; |
||||
} |
||||
|
||||
public String getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
} |
@ -1,98 +0,0 @@
|
||||
package com.air.measuredata.controller; |
||||
|
||||
import cn.hutool.core.bean.BeanUtil; |
||||
import com.air.measuredata.dto.MeasureStatisticsDto; |
||||
import com.air.measuredata.dto.MeasureTrendDto; |
||||
import com.air.measuredata.entity.MeasureData; |
||||
import com.air.measuredata.serivce.MeasureDataService; |
||||
import com.air.measuredata.vo.MeasureDataVo; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.security.access.prepost.PreAuthorize; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 测算数据 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-05-18 09:40:33 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/measuredata") |
||||
@Api(value = "measuredata", tags = "测算数据管理") |
||||
public class MeasureDataController { |
||||
|
||||
private final MeasureDataService measureDataService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* |
||||
* @param page 分页对象 |
||||
* @param measureData 测算数据 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getMeasureDataPage(Page page, MeasureData measureData) { |
||||
return R.ok(measureDataService.page(page, Wrappers.query(measureData))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询测算数据 |
||||
* |
||||
* @param measureDataId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{measureDataId}") |
||||
public R getById(@PathVariable("measureDataId") Long measureDataId) { |
||||
return R.ok(measureDataService.getById(measureDataId)); |
||||
} |
||||
|
||||
/** |
||||
* 保存测算数据 |
||||
* |
||||
* @param measureDataVo 保存测算数据 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "保存测算数据", notes = "保存测算数据") |
||||
@PostMapping |
||||
public R<Boolean> save(@RequestBody MeasureDataVo measureDataVo) { |
||||
MeasureData measureData = new MeasureData(); |
||||
BeanUtil.copyProperties(measureDataVo,measureData); |
||||
return R.ok(measureDataService.saveOrUpdate(measureData)); |
||||
} |
||||
|
||||
@ApiOperation(value = "测算结果统计(小程序)", notes = "测算结果统计") |
||||
@GetMapping("/statistics") |
||||
public R<MeasureStatisticsDto> statistics() { |
||||
return R.ok(measureDataService.statistics()); |
||||
} |
||||
|
||||
@ApiOperation(value = "测算趋势统计(小程序)", notes = "测算趋势统计") |
||||
@GetMapping("/trend") |
||||
public R<List<MeasureTrendDto>> trend() { |
||||
return R.ok(measureDataService.trend()); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除测算数据 |
||||
* |
||||
* @param measureDataId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除测算数据(通用)", notes = "通过id删除测算数据") |
||||
@DeleteMapping("/{measureDataId}") |
||||
public R<Boolean> removeById(@PathVariable Long measureDataId) { |
||||
return R.ok(measureDataService.removeById(measureDataId)); |
||||
} |
||||
} |
Loading…
Reference in new issue