| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 其他建筑 |
| | |
| | | public class ComMngStructOtherBuildVO { |
| | | |
| | | @ApiModelProperty("自增id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("建筑名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty("建筑类型id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long typeId; |
| | | |
| | | @ApiModelProperty("面积") |
| | |
| | | private String buileTypeName; |
| | | |
| | | @ApiModelProperty("社区id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long communityId; |
| | | } |