|
@@ -7,12 +7,12 @@ import lombok.Data;
|
|
|
* 库位管理(WStorageLocationManagement)实体类
|
|
|
*
|
|
|
* @author wds
|
|
|
- * @since 2024-05-07 09:35:17
|
|
|
+ * @since 2024-05-07 15:18:04
|
|
|
*/
|
|
|
@Data
|
|
|
@TableName(value = "w_storage_location_management")
|
|
|
public class WStorageLocationManagement implements Serializable {
|
|
|
- private static final long serialVersionUID = 245929403256007840L;
|
|
|
+ private static final long serialVersionUID = 995068731606432861L;
|
|
|
/**
|
|
|
* 主键
|
|
|
*/
|
|
@@ -25,10 +25,6 @@ public class WStorageLocationManagement implements Serializable {
|
|
|
* 库位名称
|
|
|
*/
|
|
|
private String locationName;
|
|
|
-/**
|
|
|
- * 库位状态
|
|
|
- */
|
|
|
- private String status;
|
|
|
/**
|
|
|
* 存储位置最大承重
|
|
|
*/
|
|
@@ -42,13 +38,33 @@ public class WStorageLocationManagement implements Serializable {
|
|
|
*/
|
|
|
private Long shelfManagementId;
|
|
|
/**
|
|
|
- * seq
|
|
|
+ * null
|
|
|
*/
|
|
|
private String seq;
|
|
|
/**
|
|
|
* 托盘类型
|
|
|
*/
|
|
|
private Integer palletType;
|
|
|
+/**
|
|
|
+ * 库位状态
|
|
|
+ */
|
|
|
+ private Integer storageLocationStatus;
|
|
|
+/**
|
|
|
+ * 库位长(m)
|
|
|
+ */
|
|
|
+ private Object storageLocationLength;
|
|
|
+/**
|
|
|
+ * 库位宽(m)
|
|
|
+ */
|
|
|
+ private Object storageLocationBreadth;
|
|
|
+/**
|
|
|
+ * 库位高(m)
|
|
|
+ */
|
|
|
+ private Object storageLocationHeight;
|
|
|
+/**
|
|
|
+ * 父库位ID
|
|
|
+ */
|
|
|
+ private Long parentId;
|
|
|
|
|
|
|
|
|
}
|