package com.supersavedriving.driver.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/7/30 3:02
|
*/
|
@Data
|
@TableName("t_company_fund_flow")
|
public class CompanyFundFlow {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 变动类型(1=充值,2=提现,3=佣金收入,4=保险收入)
|
*/
|
@TableField("type")
|
private Integer type;
|
/**
|
* 对象类型(1=平台,2=代理商)
|
*/
|
@TableField("objectType")
|
private Integer objectType;
|
/**
|
* 代理商id
|
*/
|
@TableField("objectId")
|
private Integer objectId;
|
/**
|
* 司机id
|
*/
|
@TableField("driverId")
|
private Integer driverId;
|
/**
|
* 历史账户余额
|
*/
|
@TableField("balance")
|
private BigDecimal balance;
|
/**
|
* 变动金额
|
*/
|
@TableField("money")
|
private BigDecimal money;
|
/**
|
* 变动时间
|
*/
|
@TableField("createTime")
|
private Date createTime;
|
}
|