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";
}