|
@@ -1,6 +1,8 @@
|
|
|
package com.imcs.admin.entity;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import lombok.Data;
|
|
|
/**
|
|
@@ -52,15 +54,15 @@ public class WStorageLocationManagement implements Serializable {
|
|
|
/**
|
|
|
* 库位长(m)
|
|
|
*/
|
|
|
- private Object storageLocationLength;
|
|
|
+ private BigDecimal storageLocationLength;
|
|
|
/**
|
|
|
* 库位宽(m)
|
|
|
*/
|
|
|
- private Object storageLocationBreadth;
|
|
|
+ private BigDecimal storageLocationBreadth;
|
|
|
/**
|
|
|
* 库位高(m)
|
|
|
*/
|
|
|
- private Object storageLocationHeight;
|
|
|
+ private BigDecimal storageLocationHeight;
|
|
|
/**
|
|
|
* 父库位ID
|
|
|
*/
|