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

62 lines
1.2 KiB
C#

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