From 225bcb3c9071d8c0fb6fd5ebfb1f76d0b8bab705 Mon Sep 17 00:00:00 2001 From: yuemian <--list> Date: Tue, 3 Sep 2024 11:12:38 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E7=90=86=E6=9C=BA=E5=8F=AF=E7=94=A8?= =?UTF-8?q?=E8=A7=84=E6=A0=BC=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bocloud/cmp/entity/PhysicalServer.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/main/java/com/bocloud/cmp/entity/PhysicalServer.java b/src/main/java/com/bocloud/cmp/entity/PhysicalServer.java index ca8a06b..a2109b6 100644 --- a/src/main/java/com/bocloud/cmp/entity/PhysicalServer.java +++ b/src/main/java/com/bocloud/cmp/entity/PhysicalServer.java @@ -3,6 +3,7 @@ package com.bocloud.cmp.entity; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.megatron.common.utils.DateSerializer; import com.megatron.entity.annotations.Column; +import com.megatron.entity.annotations.IgnoreAll; import com.megatron.entity.annotations.PK; import com.megatron.entity.annotations.Table; import com.megatron.entity.bean.Generic; @@ -140,4 +141,25 @@ public class PhysicalServer extends Generic { @Column("is_deleted") private Boolean isDeleted; + @IgnoreAll + private String hostname; + + @IgnoreAll + private String extIp; + + @IgnoreAll + private String password; + + @IgnoreAll + private String vpcName; + + @IgnoreAll + private Long cycleCount; + + @IgnoreAll + private String cycleType; + + @IgnoreAll + private Long orderCount; + }