using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 权益等级表
///
public partial class QuanYiLevel
{
public uint Id { get; set; }
public int Level { get; set; }
public string Title { get; set; } = null!;
///
/// 需要多少欧气值
///
public int Number { get; set; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}