123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.fdkankan.scene.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 2022-07-18
- */
- @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("floor_logo")
- private String floorLogo;
- /**
- * 地面点位logo
- */
- @TableField("marker_logo")
- private String markerLogo;
- /**
- * 二维码logo
- */
- @TableField("qr_logo")
- private String qrLogo;
- /**
- * 是否显示初始logo,0隐藏,1显示
- */
- @TableField("show_logo")
- private Integer showLogo;
- /**
- * 新增的相机是否注册,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("calculate_flexibility")
- private Boolean calculateFlexibility;
- /**
- * 数据同步类型
- */
- @TableField("data_sync")
- private String dataSync;
- @TableField("company_desc")
- private String companyDesc;
- }
|