SceneCopyLog.java 851 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.fdkankan.manage.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. *
  9. * </p>
  10. *
  11. * @author
  12. * @since 2022-06-22
  13. */
  14. @Getter
  15. @Setter
  16. @TableName("t_scene_copy_log")
  17. public class SceneCopyLog implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Integer id;
  21. @TableField("old_num")
  22. private String oldNum;
  23. @TableField("new_num")
  24. private String newNum;
  25. @TableField("copy_user_id")
  26. private Long copyUserId;
  27. @TableField("rec_status")
  28. @TableLogic(value = "A",delval = "I")
  29. private String recStatus;
  30. @TableField("create_time")
  31. private String createTime;
  32. @TableField("update_time")
  33. private String updateTime;
  34. }