|
|
@@ -0,0 +1,110 @@
|
|
|
+package com.zksy.base.domain;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 首页基础信息
|
|
|
+ * @TableName basic_info
|
|
|
+ */
|
|
|
+@TableName(value ="basic_info")
|
|
|
+@Data
|
|
|
+public class BasicInfo implements Serializable {
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.ASSIGN_UUID)
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公司简介
|
|
|
+ */
|
|
|
+ @TableField(value = "company_profile")
|
|
|
+ private String companyProfile;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公司简介图片地址
|
|
|
+ */
|
|
|
+ @TableField(value = "company_profile_url")
|
|
|
+ private String companyProfileUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 软件简介
|
|
|
+ */
|
|
|
+ @TableField(value = "software_introduction")
|
|
|
+ private String softwareIntroduction;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 硬件简介
|
|
|
+ */
|
|
|
+ @TableField(value = "hardware_introduction")
|
|
|
+ private String hardwareIntroduction;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 电话
|
|
|
+ */
|
|
|
+ @TableField(value = "telephone")
|
|
|
+ private String telephone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务热线
|
|
|
+ */
|
|
|
+ @TableField(value = "service_hotline")
|
|
|
+ private String serviceHotline;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 咨询热线
|
|
|
+ */
|
|
|
+ @TableField(value = "consultation_hotline")
|
|
|
+ private String consultationHotline;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 邮箱
|
|
|
+ */
|
|
|
+ @TableField(value = "email")
|
|
|
+ private String email;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址
|
|
|
+ */
|
|
|
+ @TableField(value = "address")
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 二维码图片地址
|
|
|
+ */
|
|
|
+ @TableField(value = "qr_code_url")
|
|
|
+ private String qrCodeUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @TableField(value = "create_by")
|
|
|
+ private String createBy;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @TableField(value = "create_time")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ @TableField(value = "update_by")
|
|
|
+ private String updateBy;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ @TableField(value = "update_time")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+}
|