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