| package com.doumee.dao.admin.response; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * 扫描返回微光设备信息 | 
|  */ | 
| @Data | 
| public class DevWgYtjResponseParam { | 
| //"type":2,"data":"8tiDkHTlGJdmxP4yAkO7mPR2odwwPgtW","time":1692772938,"deviceSn":"C238180003" | 
|     @ApiModelProperty(value = "类型") | 
|     private Integer type; | 
|     @ApiModelProperty(value = "二维码信息") | 
|     private String data; | 
|     @ApiModelProperty(value = "时间") | 
|     private Long time; | 
|     @ApiModelProperty(value = "设备号") | 
|     private String deviceSn; | 
| } |