📄 workproductproduced.java
字号:
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * The work product produced * @author Antony Joseph */public class WorkProductProduced extends CollectionElement { private Long workId; private String productCd; private BigDecimal quantity; private Date lastModifiedTs; private String lastModifiedBy; /** * @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 productCd. */ public String getProductCd() { return productCd; } /** * @param productCd The productCd to set. */ public void setProductCd(String productCd) { this.productCd = productCd; } /** * @return Returns the quantity. */ public BigDecimal getQuantity() { return quantity; } /** * @param quantity The quantity to set. */ public void setQuantity(BigDecimal quantity) { this.quantity = quantity; } /** * @return Returns the workId. */ public Long getWorkId() { return workId; } /** * @param workId The workId to set. */ public void setWorkId(Long workId) { this.workId = workId; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -