You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
606 B
25 lines
606 B
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; }
|
|
|
|
/// <summary>
|
|
/// 刷单佣金
|
|
/// </summary>
|
|
public decimal SDCommissionAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售运费
|
|
/// </summary>
|
|
public decimal DeliveryExpressFreight { get; set; }
|
|
}
|
|
}
|
|
|