You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lxCameraApi/src/main/java/com/example/lxcameraapi/entity/LightConfig.java

39 lines
633 B
Java

package com.example.lxcameraapi.entity;
import lombok.Data;
/**
* 灯源配置
*/
@Data
public class LightConfig {
/**
* 灯源公共IP
*/
private String ip;
/**
* 灯源端口
*/
private Integer port = 502;
/**
* 保持时间(秒)
*/
private Integer duration = 10;
/**
* 导通数据(十六进制)
*/
private String onData = "FF00";
/**
* 断开数据(十六进制)
*/
private String offData = "0000";
/**
* 寄存器地址(十六进制)
*/
private String registerAddress = "0000";
}