| 12345678910111213141516171819202122232425262728 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.AttOtherBase;
- import java.io.Serializable;
- import java.util.List;
- /**
- * Created by jinshui on 2019/7/23.
- */
- public class AttOtherBaseDtos implements Serializable {
- private List<AttOtherBase> baseList;
- public List<AttOtherBase> getBaseList() {
- return baseList;
- }
- public void setBaseList(List<AttOtherBase> baseList) {
- this.baseList = baseList;
- }
- @Override
- public String toString() {
- return "AttOtherBaseDtos{" +
- "baseList=" + baseList +
- '}';
- }
- }
|