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

43 lines
811 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 集市
/// </summary>
public partial class Market
{
public uint Id { 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>
/// 0在售 1已售 2已撤回
/// </summary>
public byte? Status { get; set; }
public byte Stock { get; set; }
public int Addtime { get; set; }
public int UpdateTime { get; set; }
public int? Deltime { get; set; }
}