using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 集市订单
///
public partial class MarketOrder
{
public uint Id { get; set; }
public int MarketId { get; set; }
public int UserId { get; set; }
///
/// 挂售单号
///
public string OrderNum { get; set; } = null!;
///
/// 价格
///
public decimal Price { get; set; }
///
/// id字符串
///
public string OrderListIds { get; set; } = null!;
///
/// 1未支付 2已支付 3卡单
///
public byte? Status { get; set; }
public int? PayTime { get; set; }
///
/// 总价
///
public decimal Total { get; set; }
///
/// 实际支付
///
public decimal TotalPrice { get; set; }
///
/// 支付了多少市集余额
///
public decimal Money { get; set; }
public int Addtime { get; set; }
public int UpdateTime { get; set; }
public int? Deltime { get; set; }
public byte ZdfhIs { get; set; }
}