jiangping
2024-05-29 261f60837f9224fa1afdaf819cb33b85ff9f4d77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.doumee.dao.admin.response;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 微光协议回调数据转换对象
 */
@Data
public class DevWgDataResponseParam {
 
    @ApiModelProperty(value = "请求设备类型")
    private String type;
    @ApiModelProperty(value = "人员工号")
    private String data;
    @ApiModelProperty(value = "人员名称")
    private String extra;
    @ApiModelProperty(value = "日期")
    private String time;
    @ApiModelProperty(value = "设备型号")
    private String deviceSn;
 
}