| 12345678910111213141516171819202122232425262728293031 |
- package com.ydtech.modules.ins.model;
- import java.util.List;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description TaCombosData
- * @since 2021/6/4 16:04
- */
- public class TaCombosData {
- private String comboNo;
- private List<TaKindDto> itemKindList;
- public String getComboNo() {
- return comboNo;
- }
- public void setComboNo(String comboNo) {
- this.comboNo = comboNo;
- }
- public List<TaKindDto> getItemKindList() {
- return itemKindList;
- }
- public void setItemKindList(List<TaKindDto> itemKindList) {
- this.itemKindList = itemKindList;
- }
- }
|