|
|
@@ -1,6 +1,8 @@
|
|
|
package com.github.microservice.busInfoModel.thing;
|
|
|
|
|
|
import com.github.microservice.models.baseParam.SuperSearchParam;
|
|
|
+import com.github.microservice.types.deviceUse.DeviceState;
|
|
|
+import com.github.microservice.types.deviceUse.OnLineState;
|
|
|
import com.github.microservice.types.deviceUse.ThingType;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
@@ -14,6 +16,9 @@ import java.util.List;
|
|
|
@Data
|
|
|
public class IotThingSearch extends SuperSearchParam {
|
|
|
|
|
|
+ @Schema(description = "数据状态")
|
|
|
+ private DeviceState state;
|
|
|
+
|
|
|
@Schema(description = "物模型类型:自动、手动创建")
|
|
|
private ThingType thingType;
|
|
|
|