SmsbAppointmentInfo.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.inspur.digital.domain;
  2. import org.dromara.common.tenant.core.TenantEntity;
  3. import com.baomidou.mybatisplus.annotation.*;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import java.util.Date;
  7. import com.fasterxml.jackson.annotation.JsonFormat;
  8. import java.io.Serial;
  9. /**
  10. * 预约信息对象 smsb_appointment_info
  11. *
  12. * @author ZhiCheng Fan
  13. * @date 2025-06-27
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("smsb_appointment_info")
  18. public class SmsbAppointmentInfo extends TenantEntity {
  19. @Serial
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 预约id
  23. */
  24. @TableId(value = "id")
  25. private Long id;
  26. /**
  27. * 企业
  28. */
  29. private String enterprise;
  30. /**
  31. * 地区
  32. */
  33. private String region;
  34. /**
  35. * 行业
  36. */
  37. private String industry;
  38. /**
  39. * 大小
  40. */
  41. private String size;
  42. /**
  43. * 金额
  44. */
  45. private String money;
  46. /**
  47. * 类型
  48. */
  49. private String type;
  50. /**
  51. * 层次
  52. */
  53. private String gradation;
  54. /**
  55. * 电话
  56. */
  57. private String phone;
  58. /**
  59. * 预约时间
  60. */
  61. private Date appointmentTime;
  62. /**
  63. * 人数
  64. */
  65. private Integer peopleNum;
  66. /**
  67. * 备注
  68. */
  69. private String remark;
  70. }