using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 集市 /// public partial class Market { public uint Id { 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!; /// /// 0在售 1已售 2已撤回 /// 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; } }