| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package com.inspur.digital.domain;
- import org.dromara.common.tenant.core.TenantEntity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.io.Serial;
- /**
- * 预约信息对象 smsb_appointment_info
- *
- * @author ZhiCheng Fan
- * @date 2025-06-27
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("smsb_appointment_info")
- public class SmsbAppointmentInfo extends TenantEntity {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 预约id
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 企业
- */
- private String enterprise;
- /**
- * 地区
- */
- private String region;
- /**
- * 行业
- */
- private String industry;
- /**
- * 大小
- */
- private String size;
- /**
- * 金额
- */
- private String money;
- /**
- * 类型
- */
- private String type;
- /**
- * 层次
- */
- private String gradation;
- /**
- * 电话
- */
- private String phone;
- /**
- * 预约时间
- */
- private Date appointmentTime;
- /**
- * 人数
- */
- private Integer peopleNum;
- /**
- * 备注
- */
- private String remark;
- }
|