ChouBox/ChouBox.Model/Entities/GoodsExtendList.cs
2025-04-23 19:20:23 +08:00

43 lines
897 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class GoodsExtendList
{
/// <summary>
/// 主键
/// </summary>
public uint Id { get; set; }
/// <summary>
/// 奖品Id
/// </summary>
public int GoodsId { get; set; }
/// <summary>
/// 盲盒id
/// </summary>
public int GoodsListId { get; set; }
/// <summary>
/// 最低抽奖次数
/// </summary>
public int RewardNum { get; set; }
/// <summary>
/// 奖品编号
/// </summary>
public string PrizeCode { get; set; } = null!;
/// <summary>
/// 1默认最低抽奖次数2指定多少抽出3指定范围内必出,4:指定用户
/// </summary>
public int RawrdType { get; set; }
/// <summary>
/// 最低抽奖次数
/// </summary>
public int? RewardNum1 { get; set; }
}