35 lines
707 B
C#
35 lines
707 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ChouBox.Model.Entities;
|
|
|
|
public partial class Collect
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public uint UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 盒子ID
|
|
/// </summary>
|
|
public uint GoodsId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public uint Num { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1一番赏 2无限赏 3擂台赏 4抽卡机 5积分赏 6全局赏 7福利盲盒 8领主赏 9连击赏
|
|
/// </summary>
|
|
public byte Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
public uint Addtime { get; set; }
|
|
}
|