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_revenue_flow") 
 | 
public class ShopRevenueFlow  extends BaseEntity { 
 | 
    @Extend 
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
  
 | 
  
 | 
     
 | 
    /** 
 | 
     * 用户id 
 | 
     */ 
 | 
  
 | 
  
 | 
    private String  userId; 
 | 
     
 | 
    /** 
 | 
     * 收益说明 
 | 
     */ 
 | 
  
 | 
  
 | 
    private String  revenueContent; 
 | 
     
 | 
    /** 
 | 
     * 收益金额 
 | 
     */ 
 | 
  
 | 
  
 | 
    private Double  amount; 
 | 
     
 | 
    /** 
 | 
     * 原始订单ID 
 | 
     */ 
 | 
  
 | 
  
 | 
    private Long  businessId; 
 | 
     
 | 
    /** 
 | 
     * 公司ID 
 | 
     */ 
 | 
  
 | 
  
 | 
    private Long  companyId; 
 | 
  
 | 
  
 | 
  
 | 
   
 | 
} 
 |