自动化立体仓库 - WMS系统
zwl
昨天 00d29e3c9fd6692fc9c91f9782b13269e2835bfd
src/main/java/com/zy/asrs/entity/WorkChartAxis.java
@@ -1,31 +1,17 @@
package com.zy.asrs.entity;
import lombok.Data;
/**
 * 入出库统计曲线图
 * @author admin
 * @date 2018年12月12日
 */
@Data
public class WorkChartAxis {
   private String ymd;
    private int inqty;
    private int outqty;
   public String getYmd() {
      return ymd;
   }
   public void setYmd(String ymd) {
      this.ymd = ymd;
   }
   public int getInqty() {
      return inqty;
   }
   public void setInqty(int inqty) {
      this.inqty = inqty;
   }
   public int getOutqty() {
      return outqty;
   }
   public void setOutqty(int outqty) {
      this.outqty = outqty;
   }
   private double cube_inqty;
   private double cube_outqty;
}