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

4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. package com.gaotao.modules.automatedWarehouse.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @Description WCS回调任务基础实体类 - 数据库表映射 - rqrq
  7. * @Author rqrq
  8. * @Date 2025/10/04
  9. */
  10. @Data
  11. @TableName("wcs_callback_task")
  12. public class WcsCallbackTask {
  13. /**
  14. * 主键ID自增
  15. */
  16. @TableId(type = IdType.AUTO)
  17. private Long id;
  18. /**
  19. * 站点
  20. */
  21. private String site;
  22. /**
  23. * 栈板ID
  24. */
  25. private String palletId;
  26. /**
  27. * 事务类型描述入库/出库
  28. */
  29. private String transTypeDesc;
  30. /**
  31. * 目标仓库ID
  32. */
  33. private String toWarehouseId;
  34. /**
  35. * 目标库位ID
  36. */
  37. private String toLocationId;
  38. /**
  39. * 处理状态已录入/处理中/已完成/处理失败
  40. */
  41. private String status;
  42. /**
  43. * 创建时间WCS回调时间
  44. */
  45. @TableField(fill = FieldFill.INSERT)
  46. private Date createdTime;
  47. /**
  48. * 处理开始时间
  49. */
  50. private Date processStartTime;
  51. /**
  52. * 处理完成时间
  53. */
  54. private Date processEndTime;
  55. /**
  56. * 错误信息
  57. */
  58. private String errorMsg;
  59. /**
  60. * 重试次数
  61. */
  62. private Integer retryCount;
  63. /**
  64. * 备注
  65. */
  66. private String remark;
  67. /**
  68. * WCS任务号
  69. */
  70. private String taskNo;
  71. /**
  72. * WCS明细行号
  73. */
  74. private Integer itemNo;
  75. /**
  76. * 目标站点
  77. */
  78. private String toStation;
  79. }