@@ -136,6 +136,12 @@ public enum ErrorCode {
+
+ FAILURE_CODE_7001(7001, "激光场景状态同步失败,请重试!"),
;
private Integer code;
@@ -0,0 +1,15 @@
+package com.fdkankan.common.constant;
+/**
+ * <p>
+ * TODO
+ * </p>
+ *
+ * @author dengsixing
+ * @since 2022/1/14
+ **/
+public class HttpCode {
+ public final static int SC_SUCCESS = 0;
+}
@@ -12,4 +12,6 @@ public class RequestBase implements Serializable {
private int pageSize = 10;
private int start;
+ private String orderBy;
}