郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
    }
}