Company.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package com.fdkankan.scene.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.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. * 客户企业logo信息
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-07-18
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_company")
  22. public class Company implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Long id;
  26. /**
  27. * 公司名称
  28. */
  29. @TableField("company_name")
  30. private String companyName;
  31. /**
  32. * 顶部logo
  33. */
  34. @TableField("top_logo")
  35. private String topLogo;
  36. /**
  37. * 地面logo
  38. */
  39. @TableField("floor_logo")
  40. private String floorLogo;
  41. /**
  42. * 地面点位logo
  43. */
  44. @TableField("marker_logo")
  45. private String markerLogo;
  46. /**
  47. * 二维码logo
  48. */
  49. @TableField("qr_logo")
  50. private String qrLogo;
  51. /**
  52. * 是否显示初始logo,0隐藏,1显示
  53. */
  54. @TableField("show_logo")
  55. private Integer showLogo;
  56. /**
  57. * 新增的相机是否注册,0否,1删
  58. */
  59. @TableField("camera_delete")
  60. private Integer cameraDelete;
  61. /**
  62. * 创建时间
  63. */
  64. @TableField("create_time")
  65. private Date createTime;
  66. /**
  67. * 更新时间
  68. */
  69. @TableField("update_time")
  70. private Date updateTime;
  71. /**
  72. * 记录的状态,A: 生效,I: 禁用
  73. */
  74. @TableField("rec_status")
  75. @TableLogic(value = "A", delval = "I")
  76. private String recStatus;
  77. @TableField("calculate_flexibility")
  78. private Boolean calculateFlexibility;
  79. /**
  80. * 数据同步类型
  81. */
  82. @TableField("data_sync")
  83. private String dataSync;
  84. @TableField("company_desc")
  85. private String companyDesc;
  86. }