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

33 lines
617 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 秒杀设置
/// </summary>
public partial class KkSeckill
{
public uint Id { get; set; }
/// <summary>
/// 秒杀时间段
/// </summary>
public string SeckillTime { get; set; } = null!;
/// <summary>
/// 商品限购数量
/// </summary>
public uint GoodsNum { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public uint UpdateTime { get; set; }
}