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