namespace BBWY.Server.Model.Dto
{
public class SDCalculationCostRequest : PlatformRequest
{
public string OrderId { get; set; }
public bool IsSetStorageType { get; set; }
public string Flag { get; set; }
public string VenderRemark { get; set; }
public Enums.SDType SDType { get; set; }
///
/// 刷单佣金
///
public decimal SDCommissionAmount { get; set; }
///
/// 销售运费
///
public decimal DeliveryExpressFreight { get; set; }
///
/// 平台扣点
///
public decimal PlatformCommissionRatio { get; set; }
}
}