huanghongfa
2020-12-14 5b88589584bb2b61b481ade592f6f8106556782d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.common.model.vos.community;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 楼层类型
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-14 17:16
 **/
@Data
@ApiModel("》 其他建筑 》楼层类型")
public class ComMngStructLayerTypeVO {
 
    @ApiModelProperty("自增id")
    private Long id;
 
    @ApiModelProperty("楼层类型名称")
    private String name;
}