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.
22 lines
515 B
22 lines
515 B
namespace SDKAdapter.OperationPlatform.Models
|
|
{
|
|
public class OP_EditPriceResponse
|
|
{
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单总价
|
|
/// </summary>
|
|
public decimal OrderTotalAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单货款
|
|
/// </summary>
|
|
public decimal OrderProductAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运费
|
|
/// </summary>
|
|
public decimal FreightAmount { get; set; }
|
|
}
|
|
}
|
|
|