| 123456789101112131415161718192021222324252627282930313233 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 项目名: yhlxj
- * 文件名: UserPlatSkuDistributeRate
- * 创建者: JavaZou
- * 创建时间:2023/11/14 13:39
- */
- @Getter
- @Setter
- public class UserPlatSkuDistributeRate extends BaseEntity{
- private Long goodsId;
- private Long skuId;
- /**
- * 固定用户分销id
- */
- private Long distributeId;
- /**
- * 分销比例
- */
- private Integer rate = 0;
- /**
- * 第二分销比例 不包含套餐
- */
- private Integer secondRate;
- }
|