MeetingAttendee.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. private Long userId;
  38. /**
  39. * 是否签到(0-否 1-是)
  40. */
  41. private Integer isSign;
  42. /**
  43. * 签到时间
  44. */
  45. private LocalDateTime signDate;
  46. /**
  47. * 是否签退(0-否 1-是)
  48. */
  49. private Integer isSignOut;
  50. /**
  51. * 签退时间
  52. */
  53. private LocalDateTime signOutDate;
  54. /**
  55. * 签到方式(0.人工签到 1.人脸签到)
  56. */
  57. private Integer signType;
  58. /**
  59. * 组织机构ID
  60. */
  61. private Integer deptId;
  62. /**
  63. * 租户ID
  64. */
  65. private Integer tenantId;
  66. /**
  67. * 签退方式(0.人工签退 1.人脸签退)
  68. */
  69. private Integer signOutType;
  70. }