You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

98 lines
1.6 KiB

package com.gaotao.modules.automatedWarehouse.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.util.Date;
/**
* @Description WCS回调任务基础实体类 - 数据库表映射 - rqrq
* @Author rqrq
* @Date 2025/10/04
*/
@Data
@TableName("wcs_callback_task")
public class WcsCallbackTask {
/**
* 主键ID,自增
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 站点
*/
private String site;
/**
* 栈板ID
*/
private String palletId;
/**
* 事务类型描述:入库/出库
*/
private String transTypeDesc;
/**
* 目标仓库ID
*/
private String toWarehouseId;
/**
* 目标库位ID
*/
private String toLocationId;
/**
* 处理状态:已录入/处理中/已完成/处理失败
*/
private String status;
/**
* 创建时间(WCS回调时间)
*/
@TableField(fill = FieldFill.INSERT)
private Date createdTime;
/**
* 处理开始时间
*/
private Date processStartTime;
/**
* 处理完成时间
*/
private Date processEndTime;
/**
* 错误信息
*/
private String errorMsg;
/**
* 重试次数
*/
private Integer retryCount;
/**
* 备注
*/
private String remark;
/**
* WCS任务号
*/
private String taskNo;
/**
* WCS明细行号
*/
private Integer itemNo;
/**
* 目标站点
*/
private String toStation;
}