|
|
@ -3,6 +3,7 @@ package cn.estsh.i3plus.pojo.mes.model;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -20,4 +21,8 @@ public class ProductBiSeriesModel {
|
|
|
|
private String type;
|
|
|
|
private String type;
|
|
|
|
@ApiParam("显示的数据")
|
|
|
|
@ApiParam("显示的数据")
|
|
|
|
private List<Double> data;
|
|
|
|
private List<Double> data;
|
|
|
|
|
|
|
|
@ApiParam("实际数量集合")
|
|
|
|
|
|
|
|
private List<Double> snQtyList = new ArrayList<>();
|
|
|
|
|
|
|
|
@ApiParam("计划数量集合")
|
|
|
|
|
|
|
|
private List<Double> planQtyList = new ArrayList<>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|