using System;
using System.Collections.Generic;
namespace HoneyBox.Model.Entities;
///
/// VIP等级配置表
///
public partial class VipLevel
{
///
/// 主键ID
///
public int Id { get; set; }
///
/// VIP等级
///
public int Level { get; set; }
///
/// 等级名称
///
public string Title { get; set; } = null!;
///
/// 升级所需数量
///
public int Number { get; set; }
///
/// 创建时间
///
public DateTime CreatedAt { get; set; }
///
/// 更新时间
///
public DateTime UpdatedAt { get; set; }
///
/// 删除时间
///
public DateTime? DeletedAt { get; set; }
}