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