package com.taoke.autopay.entity.agent;
|
|
import com.taoke.autopay.entity.OrderChannelEnum;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: ChannelAgentSharingRatio
|
* @description: 渠道代理分成比例设置
|
* @date 2024/7/20 22:45
|
*/
|
@Data
|
public class ChannelAgentSharingRatio {
|
private Long id;
|
/**
|
* 渠道ID
|
**/
|
private Long agengId;
|
|
/**
|
* 订单渠道
|
**/
|
private OrderChannelEnum orderChannel;
|
|
/**
|
* 分成比例
|
**/
|
private BigDecimal shareRatio;
|
|
private Date createTime;
|
|
private Date updateTime;
|
}
|