代码提交

This commit is contained in:
huangzj
2023-09-22 14:10:22 +08:00
parent bbde473929
commit 4f4df0f663
8 changed files with 129 additions and 45 deletions

View File

@@ -26,6 +26,12 @@ public class AppInfoSetParam {
@ApiModelProperty(value = "设备告警")
private Integer alarmInfo;
@ApiModelProperty("是否开启出厂调试0false 1true")
private Integer exFactoryBug;
@ApiModelProperty("是否开启功能调试0false 1true")
private Integer functionBug;
@Data
@EqualsAndHashCode(callSuper = true)
public static class AppInfoSetUpdateParam extends AppInfoSetParam {

View File

@@ -50,5 +50,11 @@ public class AppInfoSet {
@ApiModelProperty("设备告警")
private Integer alarmInfo;
@ApiModelProperty("是否开启出厂调试0false 1true")
private Integer exFactoryBug;
@ApiModelProperty("是否开启功能调试0false 1true")
private Integer functionBug;
}