package com.zy.asrs.wms.apis.wcs.entity.response; 
 | 
  
 | 
import lombok.Data; 
 | 
import lombok.experimental.Accessors; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
@Data 
 | 
@Accessors(chain = true) 
 | 
public class RfidResponse implements Serializable { 
 | 
    //http://{IP:PORT}/expand/api/equipment/ptl/sendCommand 
 | 
  
 | 
    /** 
 | 
     * 控制器code,需要与控制器配置ptlController里的code对应。 
 | 
     */ 
 | 
    private String controllerCode; 
 | 
  
 | 
    /** 
 | 
     * 电子标签序号,需要与电子标签ptlTag里的index对应。 
 | 
     */ 
 | 
    private String index; 
 | 
  
 | 
    /** 
 | 
     * 电子标签编号,需要与电子标签ptlTag里的code对应。 
 | 
     */ 
 | 
    private String tagCode; 
 | 
  
 | 
    /** 
 | 
     * 颜色: 
 | 
     * RED 
 | 
     * GREEN 
 | 
     * BLUE 
 | 
     */ 
 | 
    private String color; 
 | 
  
 | 
    /** 
 | 
     * 工作模式: 
 | 
     * LIGHT:亮灯 
 | 
     * DARK:灭灯 
 | 
     * FLASH:闪灯 
 | 
     */ 
 | 
    private String mode; 
 | 
  
 | 
    /** 
 | 
     * 常用于显示数字,支持3位数。 
 | 
     */ 
 | 
    private String display; 
 | 
  
 | 
} 
 |