xiaoyong931011
2021-11-08 20d1feece65044058f54a9b8621755a2cf051740
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
package com.xzx.gc.entity;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.persistence.Id;
import javax.persistence.Table;
 
@Data
@Table(name = "xzx_platform_capital_info")
public class PlatformCapitalInfo {
    @Id
    private Long id;
 
    private String userId;
 
    private String invitedUserId;
 
    private String orderMoney;
 
    @ApiModelProperty("提成金额")
    private String royaltyMoney;
 
    private String orderId;
 
    private String ruleId;
 
    private String ruleType;
 
    private String createTime;
 
    private String shareId;
 
}