📄 timeentry.java
字号:
package net.java.workeffort.service.domain;import java.math.BigDecimal;/** * TimeEntry * @author Antony Joseph */public class TimeEntry extends CollectionElement { private Long timesheetId; private Long workId; private String rateTypeCd; private BigDecimal day0; private BigDecimal day1; private BigDecimal day2; private BigDecimal day3; private BigDecimal day4; private BigDecimal day5; private BigDecimal day6; private BigDecimal day7; private BigDecimal day8; private BigDecimal day9; private BigDecimal day10; private BigDecimal day11; private BigDecimal day12; private BigDecimal day13; private BigDecimal day14; private BigDecimal day15; private BigDecimal lineTotalAmt; private String lineTotalAmtCur; /** * @return Returns the timesheetId. */ public Long getTimesheetId() { return timesheetId; } /** * @param timesheetId The timesheetId to set. */ public void setTimesheetId(Long timesheetId) { this.timesheetId = timesheetId; } /** * @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 day0. */ public BigDecimal getDay0() { return day0; } /** * @param day0 The day0 to set. */ public void setDay0(BigDecimal day0) { this.day0 = day0; } /** * @return Returns the day1. */ public BigDecimal getDay1() { return day1; } /** * @param day1 The day1 to set. */ public void setDay1(BigDecimal day1) { this.day1 = day1; } /** * @return Returns the day10. */ public BigDecimal getDay10() { return day10; } /** * @param day10 The day10 to set. */ public void setDay10(BigDecimal day10) { this.day10 = day10; } /** * @return Returns the day11. */ public BigDecimal getDay11() { return day11; } /** * @param day11 The day11 to set. */ public void setDay11(BigDecimal day11) { this.day11 = day11; } /** * @return Returns the day12. */ public BigDecimal getDay12() { return day12; } /** * @param day12 The day12 to set. */ public void setDay12(BigDecimal day12) { this.day12 = day12; } /** * @return Returns the day13. */ public BigDecimal getDay13() { return day13; } /** * @param day13 The day13 to set. */ public void setDay13(BigDecimal day13) { this.day13 = day13; } /** * @return Returns the day14. */ public BigDecimal getDay14() { return day14; } /** * @param day14 The day14 to set. */ public void setDay14(BigDecimal day14) { this.day14 = day14; } /** * @return Returns the day15. */ public BigDecimal getDay15() { return day15; } /** * @param day15 The day15 to set. */ public void setDay15(BigDecimal day15) { this.day15 = day15; } /** * @return Returns the day2. */ public BigDecimal getDay2() { return day2; } /** * @param day2 The day2 to set. */ public void setDay2(BigDecimal day2) { this.day2 = day2; } /** * @return Returns the day3. */ public BigDecimal getDay3() { return day3; } /** * @param day3 The day3 to set. */ public void setDay3(BigDecimal day3) { this.day3 = day3; } /** * @return Returns the day4. */ public BigDecimal getDay4() { return day4; } /** * @param day4 The day4 to set. */ public void setDay4(BigDecimal day4) { this.day4 = day4; } /** * @return Returns the day5. */ public BigDecimal getDay5() { return day5; } /** * @param day5 The day5 to set. */ public void setDay5(BigDecimal day5) { this.day5 = day5; } /** * @return Returns the day6. */ public BigDecimal getDay6() { return day6; } /** * @param day6 The day6 to set. */ public void setDay6(BigDecimal day6) { this.day6 = day6; } /** * @return Returns the day7. */ public BigDecimal getDay7() { return day7; } /** * @param day7 The day7 to set. */ public void setDay7(BigDecimal day7) { this.day7 = day7; } /** * @return Returns the day8. */ public BigDecimal getDay8() { return day8; } /** * @param day8 The day8 to set. */ public void setDay8(BigDecimal day8) { this.day8 = day8; } /** * @return Returns the day9. */ public BigDecimal getDay9() { return day9; } /** * @param day9 The day9 to set. */ public void setDay9(BigDecimal day9) { this.day9 = day9; } /** * @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 lineTotalAmt. */ public BigDecimal getLineTotalAmt() { return lineTotalAmt; } /** * @param lineTotalAmt The lineTotalAmt to set. */ public void setLineTotalAmt(BigDecimal lineTotalAmt) { this.lineTotalAmt = lineTotalAmt; } /** * @return Returns the lineTotalAmtCur. */ public String getLineTotalAmtCur() { return lineTotalAmtCur; } /** * @param lineTotalAmtCur The lineTotalAmtCur to set. */ public void setLineTotalAmtCur(String lineTotalAmtCur) { this.lineTotalAmtCur = lineTotalAmtCur; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -