CameraIncrementLog.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.fdkankan.ucenter.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * <p>
  9. *
  10. * </p>
  11. *
  12. * @author
  13. * @since 2023-02-01
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_camera_increment_log")
  18. public class CameraIncrementLog implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. /**
  23. * 相机Id
  24. */
  25. @TableField("camera_id")
  26. private Long cameraId;
  27. /**
  28. * 0 授权权益,1解除权益,2绑定相机,3解绑相机
  29. */
  30. @TableField("operation_type")
  31. private Integer operationType;
  32. /**
  33. * 操作userId
  34. */
  35. @TableField("operation_user")
  36. private Long operationUser;
  37. /**
  38. * 权益Id
  39. */
  40. @TableField("increment_id")
  41. private Long incrementId;
  42. @TableField("rec_status")
  43. @TableLogic(value = "A",delval = "I")
  44. private String recStatus;
  45. @TableField("create_time")
  46. private Date createTime;
  47. @TableField("update_time")
  48. private Date updateTime;
  49. }