|
@@ -0,0 +1,159 @@
|
|
|
+package com.fdkankan.ucenter.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 客户企业logo信息
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author
|
|
|
+ * @since 2023-07-12
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_company")
|
|
|
+public class Company implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公司名称
|
|
|
+ */
|
|
|
+ @TableField("company_name")
|
|
|
+ private String companyName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 顶部logo
|
|
|
+ */
|
|
|
+ @TableField("top_logo")
|
|
|
+ private String topLogo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地面点位标志Logo
|
|
|
+ */
|
|
|
+ @TableField("marker_logo")
|
|
|
+ private String markerLogo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地面logo
|
|
|
+ */
|
|
|
+ @TableField("floor_logo")
|
|
|
+ private String floorLogo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 二维码logo
|
|
|
+ */
|
|
|
+ @TableField("qr_logo")
|
|
|
+ private String qrLogo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否显示初始logo,0隐藏,1显示
|
|
|
+ */
|
|
|
+ @TableField("show_logo")
|
|
|
+ private Integer showLogo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * t_manager表的id
|
|
|
+ */
|
|
|
+ @TableField("manager_id")
|
|
|
+ private Long managerId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增的相机是否删除,0否,1删
|
|
|
+ */
|
|
|
+ @TableField("camera_delete")
|
|
|
+ private Integer cameraDelete;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @TableField("create_time")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField("update_time")
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录的状态,A: 生效,I: 禁用
|
|
|
+ */
|
|
|
+ @TableField("rec_status")
|
|
|
+ @TableLogic(value = "A",delval = "I")
|
|
|
+ private String recStatus;
|
|
|
+
|
|
|
+ @TableField("area")
|
|
|
+ private String area;
|
|
|
+
|
|
|
+ @TableField("address")
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ @TableField("website")
|
|
|
+ private String website;
|
|
|
+
|
|
|
+ @TableField("logo")
|
|
|
+ private String logo;
|
|
|
+
|
|
|
+ @TableField("scene_logo")
|
|
|
+ private String sceneLogo;
|
|
|
+
|
|
|
+ @TableField("bg_music")
|
|
|
+ private String bgMusic;
|
|
|
+
|
|
|
+ @TableField("qualification")
|
|
|
+ private String qualification;
|
|
|
+
|
|
|
+ @TableField("code")
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ @TableField("introduce")
|
|
|
+ private String introduce;
|
|
|
+
|
|
|
+ @TableField("point")
|
|
|
+ private Integer point;
|
|
|
+
|
|
|
+ @TableField("sub_num")
|
|
|
+ private Integer subNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 企业认证审核状态:0未审核,1审核通过,2审核拒绝
|
|
|
+ */
|
|
|
+ @TableField("state")
|
|
|
+ private Integer state;
|
|
|
+
|
|
|
+ @TableField("type")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ @TableField("audit_time")
|
|
|
+ private Date auditTime;
|
|
|
+
|
|
|
+ @TableField("expiration_time")
|
|
|
+ private Date expirationTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据同步类型
|
|
|
+ */
|
|
|
+ @TableField("data_sync")
|
|
|
+ private String dataSync;
|
|
|
+
|
|
|
+ @TableField("calculate_flexibility")
|
|
|
+ private Boolean calculateFlexibility;
|
|
|
+
|
|
|
+ @TableField("scene_version")
|
|
|
+ private String sceneVersion;
|
|
|
+
|
|
|
+
|
|
|
+}
|