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<String> levels;
|
|
public ProductThresholdVo(List<String> levels) {
|
this.levels = levels;
|
}
|
|
public ProductThresholdVo() {
|
}
|
|
public List<String> getLevels() {
|
return levels;
|
}
|
|
public void setLevels(List<String> levels) {
|
this.levels = levels;
|
}
|
}
|