using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 订单明细
///
public partial class OrderList
{
public uint Id { get; set; }
///
/// 订单id
///
public uint OrderId { get; set; }
///
/// 用户id
///
public uint UserId { get; set; }
///
/// 回收订单
///
public string? RecoveryNum { get; set; }
///
/// 发货订单号
///
public string? SendNum { get; set; }
///
/// 0待选择 1回收 2选择发货 3发布集市
///
public byte Status { get; set; }
///
/// 盒子ID
///
public int? GoodsId { get; set; }
///
/// 第几箱
///
public uint Num { get; set; }
///
/// 赏ID
///
public uint ShangId { get; set; }
///
/// 奖品id
///
public uint GoodslistId { get; set; }
///
/// 奖品名称
///
public string? GoodslistTitle { get; set; }
///
/// 奖品封面图
///
public string? GoodslistImgurl { get; set; }
///
/// 奖品价值
///
public decimal GoodslistPrice { get; set; }
///
/// 奖品回收
///
public decimal GoodslistMoney { get; set; }
///
/// 1现货 2预售,3货币,4 宝箱
///
public byte GoodslistType { get; set; }
///
/// 预售时间
///
public uint GoodslistSaleTime { get; set; }
///
/// 创建时间
///
public uint Addtime { get; set; }
///
/// 选择发货/回收时间
///
public uint ChoiceTime { get; set; }
///
/// 保险柜0否 1是
///
public byte InsuranceIs { get; set; }
///
/// 盒子类型
///
public byte OrderType { get; set; }
///
/// 特殊奖品中奖订单id
///
public uint OrderListId { get; set; }
///
/// 抽奖序号
///
public uint LuckNo { get; set; }
///
/// 奖品code
///
public string? PrizeCode { get; set; }
///
/// 是否使用重抽卡 0否 1是
///
public bool? IsChong { get; set; }
public int? Deltime { get; set; }
///
/// 1抽奖 2集市购买
///
public byte? Source { get; set; }
///
/// 发货状态,1已发货,2未发货
///
public int FhStatus { get; set; }
///
/// 发货备注
///
public string? FhRemarks { get; set; }
///
/// 抽奖倍率
///
public int Doubling { get; set; }
///
/// 所属宝箱id
///
public int ParentGoodsListId { get; set; }
///
/// 是否是领主奖品
///
public sbyte IsLingzhu { get; set; }
}