renkang
2025-01-09 cdf974d19bab00ac22fe2896eb34b920d58d74a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.doumee.dao.business.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/1/8 15:32
 */
@Data
public class YwRoomContractDataVO {
 
    @ApiModelProperty(value = "在租合同数", example = "1")
    private Integer leaseContractAmount;
 
    @ApiModelProperty(value = "在租合房源数", example = "1")
    private Integer leaseRoomAmount;
 
    @ApiModelProperty(value = "可招商面积", example = "1")
    private BigDecimal investmentArea;
 
    @ApiModelProperty(value = "可招商房源数", example = "1")
    private Integer investmentRoomAmount;
 
    @ApiModelProperty(value = "在租实时均价", example = "1")
    private BigDecimal leasePrice;
 
    @ApiModelProperty(value = "在租面积", example = "1")
    private BigDecimal leaseArea;
 
}