⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 work.java

📁 一个很好的开源项目管理系统源代码
💻 JAVA
字号:
package net.java.workeffort.service.domain;import java.math.BigDecimal;import java.util.ArrayList;import java.util.Date;import java.util.List;/** * The work * @author Antony Joseph */public class Work extends BaseDomain {    private Long workId;    private String workTypeCd;    private String workPurposeTypeCd;    private Long parentId;    private String facilityCd;    private String name;    private String description;    private Date scheduledStartDt;    private Date scheduledCompletionDt;    private BigDecimal totalAmountAllowed;    private String totalAmountAllowedCur;    private BigDecimal totalHoursAllowed;    private BigDecimal estimatedHours;    private String specialTerms;    private Date actualStartDt;    private Date actualCompletionDt;    private BigDecimal actualHours;    private String workStatusCd;    private Date createdTs;    private String createdBy;    private Date lastModifiedTs;    private String lastModifiedBy;    private List workDeliverableProduced = new ArrayList();    private List workFixedAssetAssignment = new ArrayList();    private List workInventoryAssignment = new ArrayList();    private List workProductProduced = new ArrayList();    private List workRequirement = new ArrayList();    private List workAssociation = new ArrayList();    private List workPartyAssignment = new ArrayList();    /**     * @return Returns the actualCompletionDt.     */    public Date getActualCompletionDt() {        return actualCompletionDt;    }    /**     * @param actualCompletionDt The actualCompletionDt to set.     */    public void setActualCompletionDt(Date actualCompletionDt) {        this.actualCompletionDt = actualCompletionDt;    }    /**     * @return Returns the actualHours.     */    public BigDecimal getActualHours() {        return actualHours;    }    /**     * @param actualHours The actualHours to set.     */    public void setActualHours(BigDecimal actualHours) {        this.actualHours = actualHours;    }    /**     * @return Returns the actualStartDt.     */    public Date getActualStartDt() {        return actualStartDt;    }    /**     * @param actualStartDt The actualStartDt to set.     */    public void setActualStartDt(Date actualStartDt) {        this.actualStartDt = actualStartDt;    }    /**     * @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 estimatedHours.     */    public BigDecimal getEstimatedHours() {        return estimatedHours;    }    /**     * @param estimatedHours The estimatedHours to set.     */    public void setEstimatedHours(BigDecimal estimatedHours) {        this.estimatedHours = estimatedHours;    }    /**     * @return Returns the facilityCd.     */    public String getFacilityCd() {        return facilityCd;    }    /**     * @param facilityCd The facilityCd to set.     */    public void setFacilityCd(String facilityCd) {        this.facilityCd = facilityCd;    }    /**     * @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 parentId.     */    public Long getParentId() {        return parentId;    }    /**     * @param parentId The parentId to set.     */    public void setParentId(Long parentId) {        this.parentId = parentId;    }    /**     * @return Returns the scheduledCompletionDt.     */    public Date getScheduledCompletionDt() {        return scheduledCompletionDt;    }    /**     * @param scheduledCompletionDt The scheduledCompletionDt to set.     */    public void setScheduledCompletionDt(Date scheduledCompletionDt) {        this.scheduledCompletionDt = scheduledCompletionDt;    }    /**     * @return Returns the scheduledStartDt.     */    public Date getScheduledStartDt() {        return scheduledStartDt;    }    /**     * @param scheduledStartDt The scheduledStartDt to set.     */    public void setScheduledStartDt(Date scheduledStartDt) {        this.scheduledStartDt = scheduledStartDt;    }    /**     * @return Returns the specialTerms.     */    public String getSpecialTerms() {        return specialTerms;    }    /**     * @param specialTerms The specialTerms to set.     */    public void setSpecialTerms(String specialTerms) {        this.specialTerms = specialTerms;    }    /**     * @return Returns the totalAmountAllowed.     */    public BigDecimal getTotalAmountAllowed() {        return totalAmountAllowed;    }    /**     * @param totalAmountAllowed The totalAmountAllowed to set.     */    public void setTotalAmountAllowed(BigDecimal totalAmountAllowed) {        this.totalAmountAllowed = totalAmountAllowed;    }    /**     * @return Returns the totalAmountAllowedCur.     */    public String getTotalAmountAllowedCur() {        return totalAmountAllowedCur;    }    /**     * @param totalAmountAllowedCur The totalAmountAllowedCur to set.     */    public void setTotalAmountAllowedCur(String totalAmountAllowedCur) {        this.totalAmountAllowedCur = totalAmountAllowedCur;    }    /**     * @return Returns the totalHoursAllowed.     */    public BigDecimal getTotalHoursAllowed() {        return totalHoursAllowed;    }    /**     * @param totalHoursAllowed The totalHoursAllowed to set.     */    public void setTotalHoursAllowed(BigDecimal totalHoursAllowed) {        this.totalHoursAllowed = totalHoursAllowed;    }    /**     * @return Returns the workId.     */    public Long getWorkId() {        return workId;    }    /**     * @param workId The workId to set.     */    public void setWorkId(Long workId) {        this.workId = workId;    }    /**     * @return Returns the workPurposeTypeCd.     */    public String getWorkPurposeTypeCd() {        return workPurposeTypeCd;    }    /**     * @param workPurposeTypeCd The workPurposeTypeCd to set.     */    public void setWorkPurposeTypeCd(String workPurposeTypeCd) {        this.workPurposeTypeCd = workPurposeTypeCd;    }    /**     * @return Returns the workStatusCd.     */    public String getWorkStatusCd() {        return workStatusCd;    }    /**     * @param workStatusCd The workStatusCd to set.     */    public void setWorkStatusCd(String workStatusCd) {        this.workStatusCd = workStatusCd;    }    /**     * @return Returns the workTypeCd.     */    public String getWorkTypeCd() {        return workTypeCd;    }    /**     * @param workTypeCd The workTypeCd to set.     */    public void setWorkTypeCd(String workTypeCd) {        this.workTypeCd = workTypeCd;    }    /**     * @return Returns the workDeliverableProduced.     */    public List getWorkDeliverableProduced() {        return workDeliverableProduced;    }    /**     * @param workDeliverableProduced The workDeliverableProduced to set.     */    public void setWorkDeliverableProduced(List workDeliverableProduced) {        this.workDeliverableProduced = workDeliverableProduced;    }    /**     * @return Returns the workFixedAssetAssignment.     */    public List getWorkFixedAssetAssignment() {        return workFixedAssetAssignment;    }    /**     * @param workFixedAssetAssignment The workFixedAssetAssignment to set.     */    public void setWorkFixedAssetAssignment(List workFixedAssetAssignment) {        this.workFixedAssetAssignment = workFixedAssetAssignment;    }    /**     * @return Returns the workInventoryAssignment.     */    public List getWorkInventoryAssignment() {        return workInventoryAssignment;    }    /**     * @param workInventoryAssignment The workInventoryAssignment to set.     */    public void setWorkInventoryAssignment(List workInventoryAssignment) {        this.workInventoryAssignment = workInventoryAssignment;    }    /**     * @return Returns the workProductProduced.     */    public List getWorkProductProduced() {        return workProductProduced;    }    /**     * @param workProductProduced The workProductProduced to set.     */    public void setWorkProductProduced(List workProductProduced) {        this.workProductProduced = workProductProduced;    }    /**     * @return Returns the workRequirement.     */    public List getWorkRequirement() {        return workRequirement;    }    /**     * @param workRequirement The workRequirement to set.     */    public void setWorkRequirement(List workRequirement) {        this.workRequirement = workRequirement;    }    /**     * @return Returns the workAssociation.     */    public List getWorkAssociation() {        return workAssociation;    }    /**     * @param workAssociation The workAssociation to set.     */    public void setWorkAssociation(List workAssociation) {        this.workAssociation = workAssociation;    }    /**     * @return Returns the workPartyAssignment.     */    public List getWorkPartyAssignment() {        return workPartyAssignment;    }    /**     * @param workPartyAssignment The workPartyAssignment to set.     */    public void setWorkPartyAssignment(List workPartyAssignment) {        this.workPartyAssignment = workPartyAssignment;    }}

⌨️ 快捷键说明

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