partstandard.java

来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 116 行

JAVA
116
字号
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * The Part standard * @author Antony Joseph */public class PartStandard extends CollectionElement {    private String workTypeCd;    private String partTypeCd;    private BigDecimal estimatedCost;    private String estimatedCostCur;    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 estimatedQty.     */    public BigDecimal getEstimatedQty() {        return estimatedQty;    }    /**     * @param estimatedQty The estimatedQty to set.     */    public void setEstimatedQty(BigDecimal estimatedQty) {        this.estimatedQty = estimatedQty;    }    /**     * @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 partTypeCd.     */    public String getPartTypeCd() {        return partTypeCd;    }    /**     * @param partTypeCd The partTypeCd to set.     */    public void setPartTypeCd(String partTypeCd) {        this.partTypeCd = partTypeCd;    }    /**     * @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 + =
减小字号Ctrl + -
显示快捷键?