| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package com.inspur.digital.domain;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serial;
- import java.util.Date;
- /**
- * 数促-场景体验对象 smsb_device_chat_sc_scene
- *
- * @author Hao Li
- * @date 2025-07-03
- */
- @Data
- @TableName("smsb_device_chat_sc_scene")
- public class SmsbDeviceChatScScene {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 类型 1-总结 2-条目
- */
- private Long type;
- /**
- * 场景名称
- */
- private String interactionName;
- /**
- * 图片
- */
- private String photo;
- /**
- * 服务商名称
- */
- private String supplierName;
- /**
- * 应用价值
- */
- private String applicationValue;
- /**
- * 场景介绍
- */
- private String description;
- /**
- * 价格
- */
- private String priceText;
- /**
- * 适用领域
- */
- private String domainsName;
- /**
- * 预约ID
- */
- private Long appointmentId;
- /**
- * 预约企业
- */
- private String enterprise;
- /**
- * 租户编号
- */
- private String tenantId;
- /**
- * 创建时间
- */
- @TableField(fill = FieldFill.INSERT)
- private Date createTime;
- }
|