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

57 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 用户优惠券表
/// </summary>
public partial class CouponReceive
{
public uint Id { get; set; }
/// <summary>
/// 商品名称
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 商品价格
/// </summary>
public decimal? Price { get; set; }
/// <summary>
/// 满多少减多少
/// </summary>
public decimal? ManPrice { get; set; }
/// <summary>
/// 过期时间
/// </summary>
public int? EndTime { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
/// <summary>
/// 0未使用1已使用2已过期
/// </summary>
public bool Status { get; set; }
/// <summary>
/// 会员id
/// </summary>
public int? UserId { get; set; }
public int? CouponId { get; set; }
/// <summary>
/// 是否限制使用 0不限制 1一番赏 2无限赏 3擂台赏 6全局赏 9领主赏 9连击赏
/// </summary>
public byte? State { get; set; }
public int Ttype { get; set; }
}