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