From e40fbee02a7dc5cb6702ac189c24a78c6770717d Mon Sep 17 00:00:00 2001 From: Li HD <2930804527@qq.com> Date: Mon, 7 Oct 2024 18:46:26 +0800 Subject: [PATCH] =?UTF-8?q?fix():=E8=BD=A6=E8=BE=86=E8=BF=9E=E6=8E=A5?= =?UTF-8?q?=E6=A1=86=E6=9E=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aliyun/domain/InstanceInformation.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 cloud-modules/cloud-modules-vehicle-gateway/src/main/java/com/muyu/vehicle/gateway/aliyun/domain/InstanceInformation.java diff --git a/cloud-modules/cloud-modules-vehicle-gateway/src/main/java/com/muyu/vehicle/gateway/aliyun/domain/InstanceInformation.java b/cloud-modules/cloud-modules-vehicle-gateway/src/main/java/com/muyu/vehicle/gateway/aliyun/domain/InstanceInformation.java new file mode 100644 index 0000000..926c1c4 --- /dev/null +++ b/cloud-modules/cloud-modules-vehicle-gateway/src/main/java/com/muyu/vehicle/gateway/aliyun/domain/InstanceInformation.java @@ -0,0 +1,32 @@ +package com.muyu.vehicle.gateway.aliyun.domain; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +/** + * 实例属性信息 + * + * @author LiHD + * @ClassName InstanceInformation + * @Date 2024/10/2 + */ +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class InstanceInformation { + /** + * 实例ID + */ + private String InstanceId; + /** + * 实例IP + */ + private String IpAddress; + /** + * 实例状态 + */ + private String Status; +}