123456789101112131415161718192021222324252627282930 |
- package com.fs.course.param;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * 购买会员订单对象 fs_user_vip_order
- *
- * @author fs
- * @date 2024-06-27
- */
- @Data
- public class FsCourseSendRewardUParam implements Serializable
- {
- private Long userId;
- private Long videoId;//小节Id
- private String qwUserId;
- private Long companyUserId;
- private Long companyId;
- private Long courseId;
- private String corpId;
- private Integer linkType;
- private Long qwExternalId;
- private Integer source=1;//来源 1:h5 2:小程序
- private Integer isRoom;
- private Integer sendType;
- private Long periodId;
- }
|