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.
58 lines
1.8 KiB
58 lines
1.8 KiB
using System;
|
|
|
|
namespace BBWY.Client.Models
|
|
{
|
|
public class AfterSaleOrder : NotifyObject, ICloneable
|
|
{
|
|
private ProductResult? productResult;
|
|
private ServiceResult? serviceResult;
|
|
private decimal? reissueAfterSaleAmount = 0.00M;
|
|
private decimal? reissueFreight = 0.00M;
|
|
private decimal? reissueProductAmount = 0.00M;
|
|
|
|
public long Id { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
public string ProductId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 退款金额
|
|
/// </summary>
|
|
public decimal? RefundAmount { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 退款时间
|
|
/// </summary>
|
|
public DateTime? RefundTime { get; set; }
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
public string SkuId { get; set; }
|
|
public ProductResult? ProductResult { get => productResult; set { Set(ref productResult, value); } }
|
|
/// <summary>
|
|
/// 售后补偿成本
|
|
/// </summary>
|
|
public decimal? ReissueAfterSaleAmount { get => reissueAfterSaleAmount; set { Set(ref reissueAfterSaleAmount, value); } }
|
|
/// <summary>
|
|
/// 补发快递费
|
|
/// </summary>
|
|
public decimal? ReissueFreight { get => reissueFreight; set { Set(ref reissueFreight, value); } }
|
|
/// <summary>
|
|
/// 补发货款成本
|
|
/// </summary>
|
|
public decimal? ReissueProductAmount { get => reissueProductAmount; set { Set(ref reissueProductAmount, value); } }
|
|
/// <summary>
|
|
/// 服务单处理结果
|
|
/// </summary>
|
|
public ServiceResult? ServiceResult { get => serviceResult; set { Set(ref serviceResult, value); } }
|
|
|
|
public object Clone()
|
|
{
|
|
return this.MemberwiseClone();
|
|
}
|
|
}
|
|
}
|
|
|