FsCourseSendRewardUParam.java 651 B

123456789101112131415161718192021222324252627282930
  1. package com.fs.course.param;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * 购买会员订单对象 fs_user_vip_order
  6. *
  7. * @author fs
  8. * @date 2024-06-27
  9. */
  10. @Data
  11. public class FsCourseSendRewardUParam implements Serializable
  12. {
  13. private Long userId;
  14. private Long videoId;//小节Id
  15. private String qwUserId;
  16. private Long companyUserId;
  17. private Long companyId;
  18. private Long courseId;
  19. private String corpId;
  20. private Integer linkType;
  21. private Long qwExternalId;
  22. private Integer source=1;//来源 1:h5 2:小程序
  23. private Integer isRoom;
  24. private Integer sendType;
  25. private Long periodId;
  26. }