|
@@ -0,0 +1,84 @@
|
|
|
+package com.imcs.admin.entity;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.io.Serializable;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+/**
|
|
|
+ * 出入库任务(WInventoryTransactionTask)实体类
|
|
|
+ *
|
|
|
+ * @author wds
|
|
|
+ * @since 2024-05-06 14:29:11
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName(value = "w_inventory_transaction_task")
|
|
|
+public class WInventoryTransactionTask implements Serializable {
|
|
|
+ private static final long serialVersionUID = 353494033918654712L;
|
|
|
+/**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ private Long id;
|
|
|
+/**
|
|
|
+ * 出入库单ID
|
|
|
+ */
|
|
|
+ private Long wInventoryTransactionOrdersId;
|
|
|
+/**
|
|
|
+ * 出入库任务编码
|
|
|
+ */
|
|
|
+ private String taskCode;
|
|
|
+/**
|
|
|
+ * 开始位置
|
|
|
+ */
|
|
|
+ private String startPosition;
|
|
|
+/**
|
|
|
+ * 结束位置
|
|
|
+ */
|
|
|
+ private String endPosition;
|
|
|
+/**
|
|
|
+ * 托盘或料盒编码
|
|
|
+ */
|
|
|
+ private String vectorCode;
|
|
|
+/**
|
|
|
+ * 异常原因
|
|
|
+ */
|
|
|
+ private String errorInfo;
|
|
|
+/**
|
|
|
+ * 状态(待执行:0 执行中:1 完成:2 异常:4 取消:-1)
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+/**
|
|
|
+ * 任务类型(1 出库 2 入库 3 移库)
|
|
|
+ */
|
|
|
+ private Integer taskType;
|
|
|
+/**
|
|
|
+ * 开始时间
|
|
|
+ */
|
|
|
+ private Date startTime;
|
|
|
+/**
|
|
|
+ * 结束日期
|
|
|
+ */
|
|
|
+ private Date endTime;
|
|
|
+/**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remarks;
|
|
|
+/**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private Date createdAt;
|
|
|
+/**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ private Integer createdBy;
|
|
|
+/**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ private Date updatedAt;
|
|
|
+/**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ private Integer updatedBy;
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|