package com.chinacreator.videoalliance.order.bean; import java.util.List; public class EcbUserProductInfo{ private String userProductId; private String userProductName; private List productInfos; public String getUserProductId() { return userProductId; } public void setUserProductId(String userProductId) { this.userProductId = userProductId; } public String getUserProductName() { return userProductName; } public void setUserProductName(String userProductName) { this.userProductName = userProductName; } public List getProductInfos() { return productInfos; } public void setProductInfos(List productInfos) { this.productInfos = productInfos; } }