19 changed files with 457 additions and 58 deletions
@ -0,0 +1,85 @@
|
||||
package com.air.housing.controller; |
||||
|
||||
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.air.housing.entity.Format; |
||||
import com.air.housing.service.FormatService; |
||||
import com.cinderella.framework.common.data.mybatis.QueryPage; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
|
||||
/** |
||||
* 业态信息 |
||||
* |
||||
* @author zeb |
||||
* @date 2021-06-09 09:13:16 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/format") |
||||
@Api(value = "format", tags = "业态信息管理") |
||||
public class FormatController { |
||||
|
||||
private final FormatService formatService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* @param page 分页对象 |
||||
* @param format 业态信息 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getFormatPage(QueryPage page, Format format) { |
||||
return R.ok(formatService.page(page.toPage(), Wrappers.query(format))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询业态信息 |
||||
* @param formatId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{formatId}") |
||||
public R getById(@PathVariable("formatId") Long formatId) { |
||||
return R.ok(formatService.getById(formatId)); |
||||
} |
||||
|
||||
/** |
||||
* 新增业态信息 |
||||
* @param format 业态信息 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "新增业态信息", notes = "新增业态信息") |
||||
@PostMapping |
||||
public R save(@RequestBody Format format) { |
||||
return R.ok(formatService.save(format)); |
||||
} |
||||
|
||||
/** |
||||
* 修改业态信息 |
||||
* @param format 业态信息 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "修改业态信息", notes = "修改业态信息") |
||||
@PutMapping |
||||
public R updateById(@RequestBody Format format) { |
||||
return R.ok(formatService.updateById(format)); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除业态信息 |
||||
* @param formatId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除业态信息", notes = "通过id删除业态信息") |
||||
@DeleteMapping("/{formatId}") |
||||
public R removeById(@PathVariable Long formatId) { |
||||
return R.ok(formatService.removeById(formatId)); |
||||
} |
||||
} |
@ -1,7 +1,7 @@
|
||||
package com.air.controller; |
||||
package com.air.housing.controller; |
||||
|
||||
import com.air.entity.Houses; |
||||
import com.air.service.HousesService; |
||||
import com.air.housing.entity.Houses; |
||||
import com.air.housing.service.HousesService; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
@ -0,0 +1,30 @@
|
||||
package com.air.housing.dto; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* @author zeb. |
||||
* Created by zeb on 2021/6/8. |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode |
||||
public class HousingDefine { |
||||
@ApiModelProperty(value = "blocks_origin主键") |
||||
private Long blockId; |
||||
@ApiModelProperty(value = "楼盘id") |
||||
private Long housingEstatesId; |
||||
@ApiModelProperty(value = "楼盘名称") |
||||
private String name; |
||||
@ApiModelProperty(value = "公告id") |
||||
private Long annoId; |
||||
@ApiModelProperty(value = "大业态") |
||||
private String largeFormat; |
||||
@ApiModelProperty(value = "业态") |
||||
private String format; |
||||
@ApiModelProperty(value = "物业类型") |
||||
private String propertyType; |
||||
// @ApiModelProperty(value = "其他编号")
|
||||
// private String otherNo;
|
||||
} |
@ -0,0 +1,80 @@
|
||||
package com.air.housing.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.extension.activerecord.Model; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import java.math.BigDecimal; |
||||
import java.io.Serializable; |
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* 业态信息 |
||||
* |
||||
* @author zeb |
||||
* @date 2021-06-09 09:13:16 |
||||
*/ |
||||
@Data |
||||
@TableName("format") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "业态信息") |
||||
public class Format extends Model<Format> { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId |
||||
@ApiModelProperty(value="主键,自增") |
||||
private Long formatId; |
||||
@ApiModelProperty(value="楼盘id") |
||||
private Long housingEstateId; |
||||
@ApiModelProperty(value="物业类型") |
||||
private String propertyType; |
||||
@ApiModelProperty(value="大业态") |
||||
private String largeFormat; |
||||
@ApiModelProperty(value="业态") |
||||
private String format; |
||||
@ApiModelProperty(value="拟售总价") |
||||
private BigDecimal preTotalPrice; |
||||
@ApiModelProperty(value="装修标准(字典标识)") |
||||
private String decorationStandard; |
||||
@ApiModelProperty(value="业态体量") |
||||
private BigDecimal formatSize; |
||||
@ApiModelProperty(value="业态首推时间") |
||||
private LocalDateTime firstPushDate; |
||||
@ApiModelProperty(value="供应套数") |
||||
private Integer supplyCount; |
||||
@ApiModelProperty(value="供应面积") |
||||
private BigDecimal supplyArea; |
||||
@ApiModelProperty(value="成交套数") |
||||
private Integer dealtCount; |
||||
@ApiModelProperty(value="成交面积") |
||||
private BigDecimal dealtArea; |
||||
@ApiModelProperty(value="狭义库存") |
||||
private BigDecimal narrowSenseStock; |
||||
@ApiModelProperty(value="未推库存") |
||||
private BigDecimal unpushedStock; |
||||
@ApiModelProperty(value="广义库存") |
||||
private BigDecimal broadSenseStock; |
||||
@ApiModelProperty(value="最近6月月均成交量") |
||||
private Integer lastSixMonDealtCount; |
||||
@ApiModelProperty(value="狭义去化周期") |
||||
private Integer narrowSenseDec; |
||||
@ApiModelProperty(value="广义去化周期") |
||||
private Integer broadSenseDec; |
||||
@ApiModelProperty(value="状态") |
||||
private String statusCd; |
||||
@ApiModelProperty(value="状态时间") |
||||
private LocalDateTime statusDate; |
||||
@ApiModelProperty(value="创建人") |
||||
private String createUserId; |
||||
@ApiModelProperty(value="创建时间") |
||||
private LocalDateTime createDate; |
||||
@ApiModelProperty(value="修改人") |
||||
private String updateUserId; |
||||
@ApiModelProperty(value="修改时间") |
||||
private LocalDateTime updateDate; |
||||
@ApiModelProperty(value="备注") |
||||
private String remark; |
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.housing.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.air.housing.entity.Format; |
||||
|
||||
/** |
||||
* 业态信息 |
||||
* |
||||
* @author zeb |
||||
* @date 2021-06-09 09:13:16 |
||||
*/ |
||||
public interface FormatMapper extends BaseMapper<Format> { |
||||
|
||||
} |
@ -1,6 +1,6 @@
|
||||
package com.air.mapper; |
||||
package com.air.housing.mapper; |
||||
|
||||
import com.air.entity.Houses; |
||||
import com.air.housing.entity.Houses; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
@ -0,0 +1,14 @@
|
||||
package com.air.housing.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import com.air.housing.entity.Format; |
||||
|
||||
/** |
||||
* 业态信息 |
||||
* |
||||
* @author zeb |
||||
* @date 2021-06-09 09:13:16 |
||||
*/ |
||||
public interface FormatService extends IService<Format> { |
||||
|
||||
} |
@ -1,6 +1,6 @@
|
||||
package com.air.service; |
||||
package com.air.housing.service; |
||||
|
||||
import com.air.entity.Houses; |
||||
import com.air.housing.entity.Houses; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
@ -0,0 +1,18 @@
|
||||
package com.air.housing.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.air.housing.entity.Format; |
||||
import com.air.housing.mapper.FormatMapper; |
||||
import com.air.housing.service.FormatService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 业态信息 |
||||
* |
||||
* @author zeb |
||||
* @date 2021-06-09 09:13:16 |
||||
*/ |
||||
@Service |
||||
public class FormatServiceImpl extends ServiceImpl<FormatMapper, Format> implements FormatService { |
||||
|
||||
} |
@ -1,8 +1,8 @@
|
||||
package com.air.service.impl; |
||||
package com.air.housing.service.impl; |
||||
|
||||
import com.air.entity.Houses; |
||||
import com.air.mapper.HousesMapper; |
||||
import com.air.service.HousesService; |
||||
import com.air.housing.entity.Houses; |
||||
import com.air.housing.mapper.HousesMapper; |
||||
import com.air.housing.service.HousesService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
||||
<mapper namespace="com.air.housing.mapper.FormatMapper"> |
||||
|
||||
<resultMap id="formatMap" type="com.air.housing.entity.Format"> |
||||
<id property="formatId" column="format_id"/> |
||||
<result property="housingEstateId" column="housing_estate_id"/> |
||||
<result property="propertyType" column="property_type"/> |
||||
<result property="largeFormat" column="large_format"/> |
||||
<result property="format" column="format"/> |
||||
<result property="preTotalPrice" column="pre_total_price"/> |
||||
<result property="decorationStandard" column="decoration_standard"/> |
||||
<result property="formatSize" column="format_size"/> |
||||
<result property="firstPushDate" column="first_push_date"/> |
||||
<result property="supplyCount" column="supply_count"/> |
||||
<result property="supplyArea" column="supply_area"/> |
||||
<result property="dealtCount" column="dealt_count"/> |
||||
<result property="dealtArea" column="dealt_area"/> |
||||
<result property="narrowSenseStock" column="narrow_sense_stock"/> |
||||
<result property="unpushedStock" column="unpushed_stock"/> |
||||
<result property="broadSenseStock" column="broad_sense_stock"/> |
||||
<result property="lastSixMonDealtCount" column="last_six_mon_dealt_count"/> |
||||
<result property="narrowSenseDec" column="narrow_sense_dec"/> |
||||
<result property="broadSenseDec" column="broad_sense_dec"/> |
||||
<result property="statusCd" column="status_cd"/> |
||||
<result property="statusDate" column="status_date"/> |
||||
<result property="createUserId" column="create_user_id"/> |
||||
<result property="createDate" column="create_date"/> |
||||
<result property="updateUserId" column="update_user_id"/> |
||||
<result property="updateDate" column="update_date"/> |
||||
<result property="remark" column="remark"/> |
||||
</resultMap> |
||||
</mapper> |
Loading…
Reference in new issue