MeetingAttendee.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.usky.meeting.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import com.fasterxml.jackson.annotation.JsonFormat;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. import javax.persistence.Entity;
  11. import javax.persistence.Id;
  12. /**
  13. * <p>
  14. * 会议参会人员关联表
  15. * </p>
  16. *
  17. * @author zyj
  18. * @since 2024-03-08
  19. */
  20. @Data
  21. @Entity
  22. @TableName("meeting_attendee")
  23. @EqualsAndHashCode(callSuper = false)
  24. public class MeetingAttendee implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. @Id
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Long id;
  29. /**
  30. * 会议id
  31. */
  32. @JsonFormat(shape = JsonFormat.Shape.STRING)
  33. private Long meetingId;
  34. /**
  35. * 参与人id
  36. */
  37. @JsonFormat(shape = JsonFormat.Shape.STRING)
  38. private Long userId;
  39. /**
  40. * 是否签到(0-否 1-是)
  41. */
  42. private Integer isSign;
  43. /**
  44. * 签到时间
  45. */
  46. private LocalDateTime signDate;
  47. /**
  48. * 是否签退(0-否 1-是)
  49. */
  50. private Integer isSignOut;
  51. /**
  52. * 签退时间
  53. */
  54. private LocalDateTime signOutDate;
  55. /**
  56. * 签到方式(0.人工签到 1.人脸签到)
  57. */
  58. private Integer signType;
  59. /**
  60. * 组织机构ID
  61. */
  62. private Integer deptId;
  63. /**
  64. * 租户ID
  65. */
  66. private Integer tenantId;
  67. }