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

51 lines
980 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 盒子扩展表
/// </summary>
public partial class GoodsExtend
{
/// <summary>
/// 主键
/// </summary>
public uint Id { get; set; }
/// <summary>
/// 奖品Id
/// </summary>
public int GoodsId { get; set; }
/// <summary>
/// 微信支付
/// </summary>
public bool? PayWechat { get; set; }
/// <summary>
/// 余额支付
/// </summary>
public bool? PayBalance { get; set; }
/// <summary>
/// 货币支付
/// </summary>
public bool? PayCurrency { get; set; }
/// <summary>
/// 货币2支付
/// </summary>
public bool? PayCurrency2 { get; set; }
/// <summary>
/// 优惠券支付
/// </summary>
public bool? PayCoupon { get; set; }
/// <summary>
/// 是否抵扣 1:抵扣 0:支付
/// </summary>
public bool? IsDeduction { get; set; }
}