| package com.matrix.system.hive.pojo; | 
|   | 
| import com.matrix.system.hive.bean.ShoppingGoods; | 
| import com.matrix.system.hive.bean.SysProjUse; | 
|   | 
| import java.util.ArrayList; | 
| import java.util.List; | 
|   | 
| /** | 
|  * 套餐组个信息 | 
|  */ | 
| public class TaoCanVo { | 
|   | 
|   | 
|   | 
|     private ShoppingGoods taocan; | 
|   | 
|     private List<SysProjUse> projUseList = new ArrayList<>(); | 
|   | 
|   | 
|   | 
|     public ShoppingGoods getTaocan() { | 
|         return taocan; | 
|     } | 
|   | 
|     public void setTaocan(ShoppingGoods taocan) { | 
|         this.taocan = taocan; | 
|     } | 
|   | 
|     public List<SysProjUse> getProjUseList() { | 
|         return projUseList; | 
|     } | 
|   | 
|     public void setProjUseList(List<SysProjUse> projUseList) { | 
|         this.projUseList = projUseList; | 
|     } | 
| } |