30 lines
542 B
C#
30 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ChouBox.Model.Entities;
|
|
|
|
public partial class CardLevel
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卡名称
|
|
/// </summary>
|
|
public string Title { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 等级图片
|
|
/// </summary>
|
|
public string? Imgurl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int? Sort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
public int? Addtime { get; set; }
|
|
}
|