123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.fdkankan.contro.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 重定位批次表
- * </p>
- *
- * @author
- * @since 2025-09-09
- */
- @Getter
- @Setter
- @TableName("t_relocation_batch")
- public class RelocationBatch implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 重定位场景码
- */
- @TableField("num")
- private String num;
- /**
- * 0-排队中,1-计算中,2-已完成
- */
- @TableField("status")
- private Integer status;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- }
|