forked from zstackio/zstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
165 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.zstack.sdk; | ||
|
||
|
||
|
||
public class PciDeviceSpending extends org.zstack.sdk.SpendingDetails { | ||
|
||
public java.util.List sizeInventory; | ||
public void setSizeInventory(java.util.List sizeInventory) { | ||
this.sizeInventory = sizeInventory; | ||
} | ||
public java.util.List getSizeInventory() { | ||
return this.sizeInventory; | ||
} | ||
|
||
} |
31 changes: 31 additions & 0 deletions
31
sdk/src/main/java/org/zstack/sdk/PciDeviceSpendingInventory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package org.zstack.sdk; | ||
|
||
|
||
|
||
public class PciDeviceSpendingInventory { | ||
|
||
public long startTime; | ||
public void setStartTime(long startTime) { | ||
this.startTime = startTime; | ||
} | ||
public long getStartTime() { | ||
return this.startTime; | ||
} | ||
|
||
public long endTime; | ||
public void setEndTime(long endTime) { | ||
this.endTime = endTime; | ||
} | ||
public long getEndTime() { | ||
return this.endTime; | ||
} | ||
|
||
public double spending; | ||
public void setSpending(double spending) { | ||
this.spending = spending; | ||
} | ||
public double getSpending() { | ||
return this.spending; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
sdk/src/main/java/org/zstack/sdk/PricePciDeviceOfferingRefInventory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package org.zstack.sdk; | ||
|
||
|
||
|
||
public class PricePciDeviceOfferingRefInventory { | ||
|
||
public java.lang.String priceUuid; | ||
public void setPriceUuid(java.lang.String priceUuid) { | ||
this.priceUuid = priceUuid; | ||
} | ||
public java.lang.String getPriceUuid() { | ||
return this.priceUuid; | ||
} | ||
|
||
public java.lang.String pciDeviceOfferingUuid; | ||
public void setPciDeviceOfferingUuid(java.lang.String pciDeviceOfferingUuid) { | ||
this.pciDeviceOfferingUuid = pciDeviceOfferingUuid; | ||
} | ||
public java.lang.String getPciDeviceOfferingUuid() { | ||
return this.pciDeviceOfferingUuid; | ||
} | ||
|
||
public java.sql.Timestamp createDate; | ||
public void setCreateDate(java.sql.Timestamp createDate) { | ||
this.createDate = createDate; | ||
} | ||
public java.sql.Timestamp getCreateDate() { | ||
return this.createDate; | ||
} | ||
|
||
public java.sql.Timestamp lastOpDate; | ||
public void setLastOpDate(java.sql.Timestamp lastOpDate) { | ||
this.lastOpDate = lastOpDate; | ||
} | ||
public java.sql.Timestamp getLastOpDate() { | ||
return this.lastOpDate; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters