Merge branch 'dev' into test

yun-zuoyi
peter.pan 6 years ago
commit 52addcf5ea

@ -68,4 +68,18 @@ public class WmsLocatePart extends BaseBean {
public Integer getIsGeneratePicklist() {
return this.isGeneratePicklist == null ? 0 : this.isGeneratePicklist;
}
public double getPullQtyValue(){
return this.pullQty ==null?0d:this.pullQty.doubleValue();
}
public double getMaxValue(){
return this.max ==null?0:this.max.doubleValue();
}
public double getMinValue(){
return this.min ==null?0:this.min.doubleValue();
}
}

@ -40,4 +40,8 @@ public class WmsUnit extends BaseBean {
@ApiParam(value = "单位精度")
private Integer unitPrecision;
public int getUnitPrecisionValue(){
return this.unitPrecision == null?0:this.unitPrecision.intValue();
}
}

Loading…
Cancel
Save