partyrate.java

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

JAVA
160
字号
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * Party Rate * @author Antony Joseph */public class PartyRate extends CollectionElement {    private String partyCd;    private String rateTypeCd;    private String rateTypeDescr;    private Date fromDt;    private Date thruDt;    private BigDecimal rate;    private String rateCur;    private String comments;    private String lastModifiedBy;    private Date lastModifiedTs;        // needed to store the action the user took for auditing    private String action;        /**     * @return Returns the action.     */    public String getAction() {        return action;    }    /**     * @param action The action to set.     */    public void setAction(String action) {        this.action = action;    }    /**     * @return Returns the comments.     */    public String getComments() {        return comments;    }    /**     * @param comments The comments to set.     */    public void setComments(String comments) {        this.comments = comments;    }    /**     * @return Returns the fromDt.     */    public Date getFromDt() {        return fromDt;    }    /**     * @param fromDt The fromDt to set.     */    public void setFromDt(Date fromDt) {        this.fromDt = fromDt;    }    /**     * @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 partyCd.     */    public String getPartyCd() {        return partyCd;    }    /**     * @param partyCd The partyCd to set.     */    public void setPartyCd(String partyCd) {        this.partyCd = partyCd;    }    /**     * @return Returns the rate.     */    public BigDecimal getRate() {        return rate;    }    /**     * @param rate The rate to set.     */    public void setRate(BigDecimal rate) {        this.rate = rate;    }    /**     * @return Returns the rateCur.     */    public String getRateCur() {        return rateCur;    }    /**     * @param rateCur The rateCur to set.     */    public void setRateCur(String rateCur) {        this.rateCur = rateCur;    }    /**     * @return Returns the rateTypeCd.     */    public String getRateTypeCd() {        return rateTypeCd;    }    /**     * @param rateTypeCd The rateTypeCd to set.     */    public void setRateTypeCd(String rateTypeCd) {        this.rateTypeCd = rateTypeCd;    }    /**     * @return Returns the thruDt.     */    public Date getThruDt() {        return thruDt;    }    /**     * @param thruDt The thruDt to set.     */    public void setThruDt(Date thruDt) {        this.thruDt = thruDt;    }        /**     * @return Returns the rateTypeDescr.     */    public String getRateTypeDescr() {        return rateTypeDescr;    }    /**     * @param rateTypeDescr The rateTypeDescr to set.     */    public void setRateTypeDescr(String rateTypeDescr) {        this.rateTypeDescr = rateTypeDescr;    }}

⌨️ 快捷键说明

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