CameraInfoEntity.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.huimv.management.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableLogic;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import lombok.Data;
  8. /**
  9. *
  10. *
  11. * @author yinhao
  12. * @email yinhao@163.com
  13. * @date 2021-06-24 09:55:37
  14. */
  15. @Data
  16. @TableName("camera_info")
  17. public class CameraInfoEntity implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. *
  21. */
  22. @TableId
  23. private Integer id;
  24. /**
  25. *
  26. */
  27. private String name;
  28. /**
  29. *
  30. */
  31. private String account;
  32. /**
  33. *
  34. */
  35. private String password;
  36. /**
  37. *
  38. */
  39. private String areaName;
  40. private Integer areaId;
  41. /**
  42. *
  43. */
  44. private String ip;
  45. /**
  46. *
  47. */
  48. private Integer farmId;
  49. /**
  50. *
  51. */
  52. private String remark;
  53. /**
  54. *
  55. */
  56. private Integer attention;
  57. private String cameraType;
  58. private String rtsp;
  59. /**
  60. * 删除状态 0正常 1已删除
  61. */
  62. @TableLogic
  63. private Integer deleted;
  64. }