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

45 lines
816 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 预售日历
/// </summary>
public partial class Yushou
{
public uint Id { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 图片
/// </summary>
public string Imgurl { get; set; } = null!;
/// <summary>
/// 商品id
/// </summary>
public uint GoodsId { get; set; }
/// <summary>
/// 预售日期
/// </summary>
public uint SaleTime { get; set; }
/// <summary>
/// 排序
/// </summary>
public uint Sort { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
public int UpdateTime { get; set; }
}