2023-02-16 15:28:15 +08:00

39 lines
895 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.zhgd.xmgl.base;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @program: wisdomSite
* @description: 人脸设备
* @author: Mr.Peng
* @create: 2021-12-13 13:39
**/
@Data
public class UfaceDevVo {
@ApiModelProperty(value = "设备编码")
private String devCode;
@ApiModelProperty(value = "设备名称")
private String devName;
@ApiModelProperty(value = "设备IP")
private String devIp;
@ApiModelProperty(value = "设备端口")
private String devPort;
@ApiModelProperty(value = "通行方向,1:进 2出")
private Integer direction;
@ApiModelProperty(value = "设备安装时间")
private String devInstallDate;
@ApiModelProperty(value = "项目编码")
private String projectCode;
@ApiModelProperty(value = "设备在线状态 0离线1在线")
private Integer isOnline;
}