using Newtonsoft.Json;
namespace Vo
{
///
/// 经营数据-获取订单详情消费者分红记录表
///
public class GetConsumerPrifitVo
{
///
/// 消费者Id
///
public int ConsumerId;
///
/// 商户Id
///
public int MerchantId;
///
/// 分红金额
///
public decimal GetMoney;
///
/// 返现订单Id
///
public int OrderId;
///
/// 商户进件渠道
///
public int MerchantChannel;
///
/// 支付方式
///
public int PayMode;
///
/// 触发订单Id
///
public int SourceOrderId;
}
}