TaCombosData.java 611 B

12345678910111213141516171819202122232425262728293031
  1. package com.ydtech.modules.ins.model;
  2. import java.util.List;
  3. /**
  4. * @author qinfenglong
  5. * @version 1.0.0
  6. * @description TaCombosData
  7. * @since 2021/6/4 16:04
  8. */
  9. public class TaCombosData {
  10. private String comboNo;
  11. private List<TaKindDto> itemKindList;
  12. public String getComboNo() {
  13. return comboNo;
  14. }
  15. public void setComboNo(String comboNo) {
  16. this.comboNo = comboNo;
  17. }
  18. public List<TaKindDto> getItemKindList() {
  19. return itemKindList;
  20. }
  21. public void setItemKindList(List<TaKindDto> itemKindList) {
  22. this.itemKindList = itemKindList;
  23. }
  24. }