package com.doumee.dao.business.dto; 
 | 
  
 | 
import com.doumee.core.annotation.excel.ExcelColumn; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2025/10/11 16:01 
 | 
 */ 
 | 
@Data 
 | 
public class AbnormalOpenGridDTO { 
 | 
  
 | 
    @ApiModelProperty(value = "钥匙柜主键") 
 | 
    private Integer cabinetId; 
 | 
  
 | 
    @ApiModelProperty(value = "板号") 
 | 
    private String boardCode; 
 | 
  
 | 
    @ApiModelProperty(value = "通道号") 
 | 
    private String channelCode; 
 | 
  
 | 
} 
 |