Task1812:仓库健康度指标视图及相关指标自定义(#476)
parent
c1241bd6c5
commit
0e2f50e562
@ -0,0 +1,41 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsHealthIndicator;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : Wms健康指标模型
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-05-14 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WmsHealthIndicatorModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376849949646448495L;
|
||||
|
||||
@ApiParam(value = "模块名称")
|
||||
public String groupName;
|
||||
|
||||
@ApiParam(value = "指标代码")
|
||||
public String indicatorCode;
|
||||
|
||||
@ApiParam(value = "指标名称")
|
||||
public String indicatorName;
|
||||
|
||||
@ApiParam(value = "开始时间")
|
||||
public String startDateTime;
|
||||
|
||||
@ApiParam(value = "结束时间")
|
||||
public String endDateTime;
|
||||
|
||||
@ApiParam(value = "健康指标集合")
|
||||
public List<WmsHealthIndicator> healthIndicatorList;
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description : Wms健康指标报表模型
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-05-15 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WmsHealthIndicatorReportModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376850049646448495L;
|
||||
|
||||
@ApiParam(value = "图表标题名称")
|
||||
public String titleName;
|
||||
|
||||
@ApiParam(value = "图例集合")
|
||||
public List<String> legendList;
|
||||
|
||||
@ApiParam(value = "X轴数据集合")
|
||||
public List<String> xAxisList;
|
||||
|
||||
@ApiParam(value = "图表数据集合")
|
||||
public List<Map<String, Object>> seriesDataList;
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : Wms健康变量参数
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-05-14 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WmsHealthVariableParamsModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376849939646448495L;
|
||||
|
||||
@ApiParam(value = "开始时间")
|
||||
public String startDateTime;
|
||||
|
||||
@ApiParam(value = "结束时间")
|
||||
public String endDateTime;
|
||||
|
||||
@ApiParam(value = "适应存储区")
|
||||
private String applyArea;
|
||||
|
||||
@ApiParam(value = "适应物料组")
|
||||
private String applyPartGroup;
|
||||
|
||||
@ApiParam(value = "变量参数")
|
||||
private String variableParam;
|
||||
|
||||
@ApiParam(value = "工厂代码")
|
||||
private String organizeCode;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : Wms健康变量参数
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-05-14 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WmsHealthVariableResultModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376849949646448495L;
|
||||
|
||||
@ApiParam(value = "订单号")
|
||||
public String orderNo;
|
||||
|
||||
@ApiParam(value = "供应商名称")
|
||||
public String vendorName;
|
||||
|
||||
@ApiParam(value = "需求数量")
|
||||
private Double qty;
|
||||
|
||||
@ApiParam(value = "物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam(value = "计划到货日期")
|
||||
private String planDateTime;
|
||||
|
||||
@ApiParam(value = "实际到货日期")
|
||||
private String actDateTime;
|
||||
|
||||
@ApiParam(value = "物料组编号")
|
||||
private String partGroupNo;
|
||||
}
|
Loading…
Reference in New Issue