EnrollInfo.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.smcic.api.operate.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import java.io.Serializable;
  8. import java.time.LocalDateTime;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author syj
  15. * @since 2022-12-10
  16. */
  17. @Getter
  18. @Setter
  19. @TableName("operate_enroll_info")
  20. public class EnrollInfo implements Serializable {
  21. private static final long serialVersionUID = 1L;
  22. @TableId(value = "id", type = IdType.AUTO)
  23. private Integer id;
  24. private Integer operateId;
  25. private String phone;
  26. private String name;
  27. private String university;
  28. private String file;
  29. private String type;
  30. private String isOnLine;
  31. private LocalDateTime updateTime;
  32. private String introduction;
  33. private Integer votes;
  34. private Integer status;
  35. private Integer sort;
  36. private String workTitle;
  37. public EnrollInfo() {
  38. }
  39. public EnrollInfo(String phone, String name, String university, String file, String isOnLine, String type, Integer operateId, String introduction, LocalDateTime updateTime, String workTitle) {
  40. this.phone = phone;
  41. this.name = name;
  42. this.university = university;
  43. this.file = file;
  44. this.isOnLine = isOnLine;
  45. this.updateTime = updateTime;
  46. this.type = type;
  47. this.operateId = operateId;
  48. this.introduction = introduction;
  49. this.workTitle = workTitle;
  50. }
  51. }