using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 打包记录
///
public partial class OrderListRecovery
{
public uint Id { get; set; }
public uint UserId { get; set; }
///
/// 打包订单号
///
public string RecoveryNum { get; set; } = null!;
///
/// 打包金额
///
public decimal Money { get; set; }
///
/// 打包数量
///
public uint Count { get; set; }
///
/// 打包时间
///
public uint Addtime { get; set; }
}