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

📄 fixedasset.java

📁 一个很好的开源项目管理系统源代码
💻 JAVA
字号:
package net.java.workeffort.service.domain;import java.util.Date;/** * Fixed Asset * @author Antony Joseph */public class FixedAsset extends BaseDomain{    private String fixedAssetCd;    private String fixedAssetTypeCd;    private String name;    private String description;    private Date acquiredDt;    private Date lastServiceDt;    private Date nextServiceDt;    private String productionCapacity;    private Date lastModifiedTs;    private String lastModifiedBy;        /**     * @return Returns the acquiredDt.     */    public Date getAcquiredDt() {        return acquiredDt;    }    /**     * @param acquiredDt The acquiredDt to set.     */    public void setAcquiredDt(Date acquiredDt) {        this.acquiredDt = acquiredDt;    }    /**     * @return Returns the description.     */    public String getDescription() {        return description;    }    /**     * @param description The description to set.     */    public void setDescription(String description) {        this.description = description;    }    /**     * @return Returns the fixedAssetCd.     */    public String getFixedAssetCd() {        return fixedAssetCd;    }    /**     * @param fixedAssetCd The fixedAssetCd to set.     */    public void setFixedAssetCd(String fixedAssetCd) {        this.fixedAssetCd = fixedAssetCd;    }    /**     * @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 lastServiceDt.     */    public Date getLastServiceDt() {        return lastServiceDt;    }    /**     * @param lastServiceDt The lastServiceDt to set.     */    public void setLastServiceDt(Date lastServiceDt) {        this.lastServiceDt = lastServiceDt;    }    /**     * @return Returns the name.     */    public String getName() {        return name;    }    /**     * @param name The name to set.     */    public void setName(String name) {        this.name = name;    }    /**     * @return Returns the nextServiceDt.     */    public Date getNextServiceDt() {        return nextServiceDt;    }    /**     * @param nextServiceDt The nextServiceDt to set.     */    public void setNextServiceDt(Date nextServiceDt) {        this.nextServiceDt = nextServiceDt;    }    /**     * @return Returns the productionCapacity.     */    public String getProductionCapacity() {        return productionCapacity;    }    /**     * @param productionCapacity The productionCapacity to set.     */    public void setProductionCapacity(String productionCapacity) {        this.productionCapacity = productionCapacity;    }}

⌨️ 快捷键说明

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