MeetingAttendee.java 1.4 KB

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