FsCourseLink.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.fs.course.domain;
  2. import com.fs.common.annotation.Excel;
  3. import com.fs.common.core.domain.BaseEntity;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. /**
  7. * 短链对象 fs_course_link
  8. *
  9. * @author fs
  10. * @date 2024-10-24
  11. */
  12. @Data
  13. public class FsCourseLink extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** 主键Id */
  17. private Long linkId;
  18. /** 链接后缀 */
  19. @Excel(name = "链接后缀")
  20. private String link;
  21. /** 真实链接 */
  22. @Excel(name = "真实链接")
  23. private String realLink;
  24. /** 公司id */
  25. @Excel(name = "公司id")
  26. private Long companyId;
  27. /** 销售id */
  28. @Excel(name = "销售id")
  29. private Long companyUserId;
  30. /** 企微userId */
  31. @Excel(name = "企微userId")
  32. private String qwUserId;
  33. /** 课节id */
  34. @Excel(name = "课节id")
  35. private Long videoId;
  36. /** 企微主体id */
  37. @Excel(name = "企微主体id")
  38. private String corpId;
  39. private Long courseId;
  40. /**
  41. * 企微外部联系表主键
  42. */
  43. private Long qwExternalId;
  44. private Integer linkType; //链接类型 0:正常链接 1:应急链接
  45. // private String link_uuid;
  46. private Integer isRoom;//是否发群
  47. private String chatId;//是否发群
  48. @Excel(name = "营期id")
  49. private Long periodId;
  50. @ApiModelProperty(value = "营期课程id")
  51. private Long id;
  52. }