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;
|
|
}
|