package com.gk.firework.Domain.Vo; import com.gk.firework.Domain.ProductThresholdInfo; import java.util.List; /** * @author : jingjy * @date : 2021/4/15 14:48 */ public class ProductThresholdVo extends ProductThresholdInfo { private List levels; public ProductThresholdVo(List levels) { this.levels = levels; } public ProductThresholdVo() { } public List getLevels() { return levels; } public void setLevels(List levels) { this.levels = levels; } }