Skip to content

Commit fd73e76

Browse files
committed
modify UsageEventVO
1 parent 3d04dd4 commit fd73e76

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

engine/schema/src/main/java/com/cloud/event/UsageEventVO.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ public enum DynamicParameters {
7575
@Column(name = "virtual_size")
7676
private Long virtualSize;
7777

78+
@Column(name = "vm_instance_id")
79+
private long vmInstanceId;
80+
7881
public UsageEventVO() {
7982
}
8083

@@ -248,4 +251,12 @@ public void setVirtualSize(Long virtualSize) {
248251
this.virtualSize = virtualSize;
249252
}
250253

254+
public long getVmInstanceId() {
255+
return vmInstanceId;
256+
}
257+
258+
public void setVmInstanceId(long vmInstanceId) {
259+
this.vmInstanceId = vmInstanceId;
260+
}
261+
251262
}

0 commit comments

Comments
 (0)