⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fixedassetstandard.java

📁 一个很好的开源项目管理系统源代码
💻 JAVA
字号:
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * The fixed asset standard * @author Antony Joseph */public class FixedAssetStandard extends CollectionElement {    private String workTypeCd;    private String fixedAssetTypeCd;    private BigDecimal estimatedCost;    private String estimatedCostCur;    private String estimatedDuration;;    private BigDecimal estimatedQty;    private Date lastModifiedTs;    private String lastModifiedBy;        /**     * @return Returns the estimatedCost.     */    public BigDecimal getEstimatedCost() {        return estimatedCost;    }    /**     * @param estimatedCost The estimatedCost to set.     */    public void setEstimatedCost(BigDecimal estimatedCost) {        this.estimatedCost = estimatedCost;    }    /**     * @return Returns the estimatedCostCur.     */    public String getEstimatedCostCur() {        return estimatedCostCur;    }    /**     * @param estimatedCostCur The estimatedCostCur to set.     */    public void setEstimatedCostCur(String estimatedCostCur) {        this.estimatedCostCur = estimatedCostCur;    }    /**     * @return Returns the estimatedDuration.     */    public String getEstimatedDuration() {        return estimatedDuration;    }    /**     * @param estimatedDuration The estimatedDuration to set.     */    public void setEstimatedDuration(String estimatedDuration) {        this.estimatedDuration = estimatedDuration;    }    /**     * @return Returns the estimatedQty.     */    public BigDecimal getEstimatedQty() {        return estimatedQty;    }    /**     * @param estimatedQty The estimatedQty to set.     */    public void setEstimatedQty(BigDecimal estimatedQty) {        this.estimatedQty = estimatedQty;    }    /**     * @return Returns the fixedAssetTypeCd.     */    public String getFixedAssetTypeCd() {        return fixedAssetTypeCd;    }    /**     * @param fixedAssetTypeCd The fixedAssetTypeCd to set.     */    public void setFixedAssetTypeCd(String fixedAssetTypeCd) {        this.fixedAssetTypeCd = fixedAssetTypeCd;    }    /**     * @return Returns the lastModifiedBy.     */    public String getLastModifiedBy() {        return lastModifiedBy;    }    /**     * @param lastModifiedBy The lastModifiedBy to set.     */    public void setLastModifiedBy(String lastModifiedBy) {        this.lastModifiedBy = lastModifiedBy;    }    /**     * @return Returns the lastModifiedTs.     */    public Date getLastModifiedTs() {        return lastModifiedTs;    }    /**     * @param lastModifiedTs The lastModifiedTs to set.     */    public void setLastModifiedTs(Date lastModifiedTs) {        this.lastModifiedTs = lastModifiedTs;    }    /**     * @return Returns the workTypeCd.     */    public String getWorkTypeCd() {        return workTypeCd;    }    /**     * @param workTypeCd The workTypeCd to set.     */    public void setWorkTypeCd(String workTypeCd) {        this.workTypeCd = workTypeCd;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -