package com.ruoyi.bussiness.object.response.screen;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class PlacementTypeResponse {
|
|
@ApiModelProperty(value = "类型")
|
private String type;
|
|
@ApiModelProperty(value = "数量")
|
private Integer total;
|
|
@ApiModelProperty(value = "面积")
|
private BigDecimal area;
|
|
@ApiModelProperty(value = "占比")
|
private String rate;
|
|
|
}
|