| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package cn.com.lzt.overtimebudget.dto;
- import cn.com.lzt.overtimebudget.entity.TBOvertimeBudgetEntity;
- import java.util.List;
- public class TBOvertimeBudgetAddDto {
- private String departId;
- private String depName;
- private String years;
- private List<TBOvertimeBudgetEntity> entityList;
- public String getDepartId() {
- return departId;
- }
- public void setDepartId(String departId) {
- this.departId = departId;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getYears() {
- return years;
- }
- public void setYears(String years) {
- this.years = years;
- }
- public List<TBOvertimeBudgetEntity> getEntityList() {
- return entityList;
- }
- public void setEntityList(List<TBOvertimeBudgetEntity> entityList) {
- this.entityList = entityList;
- }
- }
|