📄 requirement.java
字号:
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.Date;/** * Requirement * @author Antony Joseph */public class Requirement extends BaseDomain { private Long requirementId; private String requirementTypeCd; private String name; private String description; private Date requiredByDt; private BigDecimal estimatedCost; private String estimatedCostCur; private String reason; private BigDecimal productQty; private String productQtyUom; private String ownerCd; private String authorizedBy; private Date createdTs; private String createdBy; private Date lastModifiedTs; private String lastModifiedBy; /** * @return Returns the authorizedBy. */ public String getAuthorizedBy() { return authorizedBy; } /** * @param authorizedBy The authorizedBy to set. */ public void setAuthorizedBy(String authorizedBy) { this.authorizedBy = authorizedBy; } /** * @return Returns the createdBy. */ public String getCreatedBy() { return createdBy; } /** * @param createdBy The createdBy to set. */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** * @return Returns the createdTs. */ public Date getCreatedTs() { return createdTs; } /** * @param createdTs The createdTs to set. */ public void setCreatedTs(Date createdTs) { this.createdTs = createdTs; } /** * @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 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 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 name. */ public String getName() { return name; } /** * @param name The name to set. */ public void setName(String name) { this.name = name; } /** * @return Returns the ownerCd. */ public String getOwnerCd() { return ownerCd; } /** * @param ownerCd The ownerCd to set. */ public void setOwnerCd(String ownerCd) { this.ownerCd = ownerCd; } /** * @return Returns the productQty. */ public BigDecimal getProductQty() { return productQty; } /** * @param productQty The productQty to set. */ public void setProductQty(BigDecimal productQty) { this.productQty = productQty; } /** * @return Returns the productQtyUom. */ public String getProductQtyUom() { return productQtyUom; } /** * @param productQtyUom The productQtyUom to set. */ public void setProductQtyUom(String productQtyUom) { this.productQtyUom = productQtyUom; } /** * @return Returns the reason. */ public String getReason() { return reason; } /** * @param reason The reason to set. */ public void setReason(String reason) { this.reason = reason; } /** * @return Returns the requiredByDt. */ public Date getRequiredByDt() { return requiredByDt; } /** * @param requiredByDt The requiredByDt to set. */ public void setRequiredByDt(Date requiredByDt) { this.requiredByDt = requiredByDt; } /** * @return Returns the requirementId. */ public Long getRequirementId() { return requirementId; } /** * @param requirementId The requirementId to set. */ public void setRequirementId(Long requirementId) { this.requirementId = requirementId; } /** * @return Returns the requirementTypeCd. */ public String getRequirementTypeCd() { return requirementTypeCd; } /** * @param requirementTypeCd The requirementTypeCd to set. */ public void setRequirementTypeCd(String requirementTypeCd) { this.requirementTypeCd = requirementTypeCd; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -