using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 欧气劵
///
public partial class UserCoupon
{
public int Id { get; set; }
///
/// 用户的id
///
public uint UserId { get; set; }
///
/// 1特级赏券 2终极赏券 3高级赏券 4普通赏券
///
public uint? Level { get; set; }
///
/// 开奖总金额
///
public uint Num { get; set; }
///
/// 领取多少
///
public decimal? LNum { get; set; }
///
/// 1未分享 2已分享 3已领取 4被消耗融合
///
public byte Status { get; set; }
///
/// 1下单赠送 2领取 3融合得到
///
public byte Type { get; set; }
///
/// 劵名称
///
public string Title { get; set; } = null!;
///
/// 来源id (订单、领取)
///
public string FromId { get; set; } = null!;
///
/// 分享时间
///
public int? ShareTime { get; set; }
///
/// 获取时间
///
public uint Addtime { get; set; }
public int? Updatetime { get; set; }
///
/// 自己可以获得多少
///
public decimal? Own { get; set; }
///
/// 自己可以获得多少
///
public decimal? Own2 { get; set; }
///
/// 其他人可以获得多少
///
public decimal? Other { get; set; }
///
/// 其他人可以获得多少
///
public decimal? Other2 { get; set; }
///
/// 最多可参与人数
///
public uint? KlNum { get; set; }
///
/// 最多可参与人数
///
public uint? KlNum2 { get; set; }
}