SceneDelLog.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.fdkankan.ucenter.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author
  16. * @since 2023-03-15
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("t_scene_del_log")
  21. public class SceneDelLog implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 场景删除日志
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 文件夹Id
  30. */
  31. @TableField("folder_id")
  32. private Integer folderId;
  33. /**
  34. * 场景码
  35. */
  36. @TableField("num")
  37. private String num;
  38. /**
  39. * 操作人Id
  40. */
  41. @TableField("user_id")
  42. private Long userId;
  43. /**
  44. * 操作人Id
  45. */
  46. @TableField("sys_user_id")
  47. private Long sysUserId;
  48. @TableField("create_time")
  49. private Date createTime;
  50. @TableField("update_time")
  51. private Date updateTime;
  52. }