From fb4a281ee23c8ddfb6cfc41a7ee6c43fc0eb8885 Mon Sep 17 00:00:00 2001 From: dy <dingyang@lnfxkj.tech> Date: 星期三, 23 四月 2025 10:31:02 +0800 Subject: [PATCH] 资源池后台代码提交 --- aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java index 243c864..7bb0732 100644 --- a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java +++ b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsResourceGroup.java @@ -6,6 +6,7 @@ import com.aps.common.core.annotation.Excel; import com.aps.common.core.web.domain.BaseEntity; +import java.math.BigDecimal; import java.time.LocalDateTime; /** @@ -31,7 +32,7 @@ /** 姣忔棩鐞嗚鏃堕棿 */ @Excel(name = "姣忔棩鐞嗚鏃堕棿") - private Long theoryHours; + private BigDecimal theoryHours; /** 鎴闇�姹傛棩鍓╀綑澶╂暟 */ @Excel(name = "鎴闇�姹傛棩鍓╀綑澶╂暟 ") @@ -39,7 +40,7 @@ /** 鐞嗚浜ц兘 */ @Excel(name = "鐞嗚浜ц兘") - private Long theoryCapacity; + private BigDecimal theoryCapacity; /** 鏈哄姞闇�姹傛棩鏈� */ @Excel(name = "鏈哄姞闇�姹傛棩鏈�",width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") @@ -83,12 +84,12 @@ return devicesQuantity; } - public void setTheoryHours(Long theoryHours) + public void setTheoryHours(BigDecimal theoryHours) { this.theoryHours = theoryHours; } - public Long getTheoryHours() + public BigDecimal getTheoryHours() { return theoryHours; } @@ -103,12 +104,12 @@ return restDays; } - public void setTheoryCapacity(Long theoryCapacity) + public void setTheoryCapacity(BigDecimal theoryCapacity) { this.theoryCapacity = theoryCapacity; } - public Long getTheoryCapacity() + public BigDecimal getTheoryCapacity() { return theoryCapacity; } -- Gitblit v1.9.3