From c253b555c7905c5136d47cd615ef545fa50cc6ad Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Sun, 20 Feb 2022 21:24:16 +0800 Subject: [PATCH] Merge branch 'api_score_meger' --- zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalesmanGrade.java | 75 +++++++++++++++++++++++++++++++++++++ 1 files changed, 75 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalesmanGrade.java b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalesmanGrade.java new file mode 100644 index 0000000..999b02c --- /dev/null +++ b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalesmanGrade.java @@ -0,0 +1,75 @@ +package com.matrix.system.fenxiao.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.matrix.core.anotations.Extend; +import com.matrix.system.score.entity.BaseEntity; +import lombok.Data; + +/** + * @description 推广员等级 + * @author yourName + * @date 2021-03-10 17:34 + */ +@Data +@TableName("shop_salesman_grade") +public class ShopSalesmanGrade extends BaseEntity { + @Extend + private static final long serialVersionUID = 1L; + + + + + + /** + * 等级名称 + */ + + + private String name; + + /** + * 推广提成% + */ + + + private Double sealesCommission; + + /** + * 自购返佣比例% + */ + + private Double selfCommission; + + + /** + * 邀请提成 % + */ + + + private Double invitationCommission; + + /** + * 等级条件(推广金额额) + */ + + + private Double gradeCondition; + + /** + * 默认等级1是,2不是 + */ + + + private Integer isDefault; + + /** + * 公司ID + */ + + + private Long companyId; + + + + +} \ No newline at end of file -- Gitblit v1.9.1