workinventoryassignment.java
来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 80 行
JAVA
80 行
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * Work inventory Assigments * @author Antony Joseph */public class WorkInventoryAssignment extends CollectionElement { private Long workId; private String partCd; 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 partCd. */ public String getPartCd() { return partCd; } /** * @param partCd The partCd to set. */ public void setPartCd(String partCd) { this.partCd = partCd; } /** * @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 + =
减小字号Ctrl + -
显示快捷键?