ChouBox/ChouBox.Model/Entities/KkOrder.cs
2025-04-23 19:20:23 +08:00

80 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 发货订单表
/// </summary>
public partial class KkOrder
{
public uint Id { get; set; }
/// <summary>
/// 会员id
/// </summary>
public uint UserId { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string OrderNo { get; set; } = null!;
/// <summary>
/// 商品总金额
/// </summary>
public decimal TotalPrice { get; set; }
/// <summary>
/// 实付金额
/// </summary>
public decimal Price { get; set; }
/// <summary>
/// 余额抵扣
/// </summary>
public decimal? Money { get; set; }
/// <summary>
/// Woo币抵扣
/// </summary>
public decimal? Integral { get; set; }
/// <summary>
/// 运费金额
/// </summary>
public decimal FreightPrice { get; set; }
/// <summary>
/// 0待付款 1待发货 2待收货 3确认收货
/// </summary>
public bool Status { get; set; }
/// <summary>
/// 留言
/// </summary>
public string Content { get; set; } = null!;
/// <summary>
/// 创建时间
/// </summary>
public uint Addtime { get; set; }
/// <summary>
/// 支付时间
/// </summary>
public uint PayTime { get; set; }
/// <summary>
/// 发货时间
/// </summary>
public uint DeliverTime { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public uint ConfirmTime { get; set; }
public int? UpdateTime { get; set; }
}