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.
71 lines
1.5 KiB
71 lines
1.5 KiB
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "aftersaleorder", DisableSyncStructure = true)]
|
|
public partial class AfterSaleOrder {
|
|
|
|
[Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string OrderId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string ProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品处理结果
|
|
/// </summary>
|
|
[Column(DbType = "int(255)")]
|
|
public int? ProductResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退款金额
|
|
/// </summary>
|
|
[Column(DbType = "decimal(20,2)")]
|
|
public decimal? RefundAmount { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 退款时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? RefundTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 售后补发成本
|
|
/// </summary>
|
|
[Column(DbType = "decimal(20,2)")]
|
|
public decimal? ReissueAfterSaleAmount { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 补发快递费
|
|
/// </summary>
|
|
[Column(DbType = "decimal(20,2)")]
|
|
public decimal? ReissueFreight { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 补发货款成本
|
|
/// </summary>
|
|
[Column(DbType = "decimal(20,2)")]
|
|
public decimal? ReissueProductAmount { get; set; } = 0.00M;
|
|
|
|
/// <summary>
|
|
/// 服务单处理结果
|
|
/// </summary>
|
|
[Column(DbType = "int(1)")]
|
|
public int? ServiceResult { get; set; }
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|