package com.doumee.model.response; 
 | 
  
 | 
import com.doumee.core.annotation.excel.ExcelColumn; 
 | 
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; 
 | 
} 
 |