Helius
2021-03-17 9974b1fffff1cad712b7c30fb4c708ef45ec4b8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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_order")
public class ShopSalesmanOrder  extends BaseEntity {
    /**
     * 推广收益类型1推广收益
     */
    public static final Integer REVENUE_TYPE_SALES = 1;
 
    /**
     * 推广收益类型2邀请收益
     */
    public static final Integer REVENUE_TYPE_INVITATION = 2;
    /**
     * 分销单状态1待结算
     */
    public static final Integer STATUS_DJS = 1;
    /**
     * 分销单状态2已结算
     */
    public static final Integer STATUS_YJS = 2;
    /**
     * 分销单状态3已退款
     */
    public static final Integer STATUS_YTK = 3;
 
 
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
 
 
    
    /**
     * 订单id
     */
 
 
    private Long  orderId ;
    
    /**
     * 用户id
     */
 
 
    private String  userId;
    
    /**
     * 收益人id
     */
 
 
    private String  salesUserId;
    
    /**
     * 收益类型1,推广收益,2邀请收益
     */
 
 
    private Integer  revenueType;
    
    /**
     * 收益金额
     */
 
 
    private Double  amount;
    
    /**
     * 结算状态 1,待结算,2,已结算,3已退款
     */
    private Integer  orderStatus;
    
    /**
     * 结算单ID
     */
 
 
    private Long  settlementId;
    
    /**
     * 公司ID
     */
 
 
    private Long  companyId;
 
 
 
  
}