TBOvertimeBudgetAddDto.java 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.lzt.overtimebudget.dto;
  2. import cn.com.lzt.overtimebudget.entity.TBOvertimeBudgetEntity;
  3. import java.util.List;
  4. public class TBOvertimeBudgetAddDto {
  5. private String departId;
  6. private String depName;
  7. private String years;
  8. private List<TBOvertimeBudgetEntity> entityList;
  9. public String getDepartId() {
  10. return departId;
  11. }
  12. public void setDepartId(String departId) {
  13. this.departId = departId;
  14. }
  15. public String getDepName() {
  16. return depName;
  17. }
  18. public void setDepName(String depName) {
  19. this.depName = depName;
  20. }
  21. public String getYears() {
  22. return years;
  23. }
  24. public void setYears(String years) {
  25. this.years = years;
  26. }
  27. public List<TBOvertimeBudgetEntity> getEntityList() {
  28. return entityList;
  29. }
  30. public void setEntityList(List<TBOvertimeBudgetEntity> entityList) {
  31. this.entityList = entityList;
  32. }
  33. }