1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | package com.doumee.core.erp.model.openapi.response; 
 |    
 |  import io.swagger.annotations.ApiModel; 
 |  import io.swagger.annotations.ApiModelProperty; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * 分类信息表 
 |   * @author 江蹄蹄 
 |   * @date 2023/11/23 14:03 
 |   */ 
 |  @Data 
 |  @ApiModel("停车场全量返回信息") 
 |  public class ParkListResponse { 
 |    
 |      @ApiModelProperty(value = "唯一标识" ,example = "1") 
 |      private Integer id; 
 |      @ApiModelProperty(value = "名称" ) 
 |      private String name; 
 |      @ApiModelProperty(value = "状态 0禁用 1启用", example = "1") 
 |      private Integer status; 
 |  } 
 |  
  |