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