package cc.mrbird.febs.mall.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author wzy
|
* @date 2021-09-24
|
**/
|
@Data
|
@ApiModel(value = "MoneyFlowVo", description = "资金列表返回参数类")
|
public class MoneyFlowVo {
|
|
@ApiModelProperty(value = "订单号")
|
private String orderNo;
|
|
@ApiModelProperty(value = "金额,有正负")
|
private BigDecimal amount;
|
|
@ApiModelProperty(value = "类型 1-静态收益 2-直推奖 3-代理收益 4-排名收益 5-总监收益 6-社区点补 7-一代收益 8-提现 9-转增 10-支付 11-退款")
|
private Integer type;
|
|
@ApiModelProperty(value = "对方手机号")
|
private String phone;
|
|
@ApiModelProperty(value = "代理等级")
|
private String memberLevel;
|
|
@ApiModelProperty(value = "提现状态 1-提现中2-成功 3-拒绝")
|
private Integer status;
|
|
@ApiModelProperty(value = "时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createdTime;
|
}
|