Commit 872b625a authored by 周昊's avatar 周昊

1、修改列表状态字段为String

parent 91941a8e
...@@ -33,5 +33,5 @@ public class AlgorithmBaseListDto{ ...@@ -33,5 +33,5 @@ public class AlgorithmBaseListDto{
private Long sort; private Long sort;
/** 帐号状态(0正常 */ /** 帐号状态(0正常 */
private Boolean status; private String status;
} }
...@@ -27,5 +27,5 @@ public class AlgorithmCameraListDto { ...@@ -27,5 +27,5 @@ public class AlgorithmCameraListDto {
private Long sort; private Long sort;
/** 状态 */ /** 状态 */
private Boolean status; private String status;
} }
...@@ -29,7 +29,7 @@ public class AlgorithmPieceListDto { ...@@ -29,7 +29,7 @@ public class AlgorithmPieceListDto {
private Long sort; private Long sort;
/** 帐号状态(0正常 */ /** 帐号状态(0正常 */
private Boolean status; private String status;
/** 算法块对应Class */ /** 算法块对应Class */
private String clazz; private String clazz;
......
...@@ -38,7 +38,7 @@ public class AlgorithmSceneListDto { ...@@ -38,7 +38,7 @@ public class AlgorithmSceneListDto {
private Boolean live; private Boolean live;
/** 帐号状态(0正常 */ /** 帐号状态(0正常 */
private Boolean status; private String status;
/** 摄像头id列表字符串 */ /** 摄像头id列表字符串 */
private String cameraIdList; private String cameraIdList;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment