SmsbDeviceChatScScene.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.inspur.digital.domain;
  2. import com.baomidou.mybatisplus.annotation.FieldFill;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import java.io.Serial;
  8. import java.util.Date;
  9. /**
  10. * 数促-场景体验对象 smsb_device_chat_sc_scene
  11. *
  12. * @author Hao Li
  13. * @date 2025-07-03
  14. */
  15. @Data
  16. @TableName("smsb_device_chat_sc_scene")
  17. public class SmsbDeviceChatScScene {
  18. @Serial
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键ID
  22. */
  23. @TableId(value = "id")
  24. private Long id;
  25. /**
  26. * 类型 1-总结 2-条目
  27. */
  28. private Long type;
  29. /**
  30. * 场景名称
  31. */
  32. private String interactionName;
  33. /**
  34. * 图片
  35. */
  36. private String photo;
  37. /**
  38. * 服务商名称
  39. */
  40. private String supplierName;
  41. /**
  42. * 应用价值
  43. */
  44. private String applicationValue;
  45. /**
  46. * 场景介绍
  47. */
  48. private String description;
  49. /**
  50. * 价格
  51. */
  52. private String priceText;
  53. /**
  54. * 适用领域
  55. */
  56. private String domainsName;
  57. /**
  58. * 预约ID
  59. */
  60. private Long appointmentId;
  61. /**
  62. * 预约企业
  63. */
  64. private String enterprise;
  65. /**
  66. * 租户编号
  67. */
  68. private String tenantId;
  69. /**
  70. * 创建时间
  71. */
  72. @TableField(fill = FieldFill.INSERT)
  73. private Date createTime;
  74. }