using NCC.Common.Const;
using SqlSugar;
using System;
namespace NCC.Blind.Entitys
{
///
/// 盲盒券
///
[SugarTable("tb_MyBoxCoupon")]
[Tenant(ClaimConst.TENANT_ID)]
public class TbMyBoxCouponEntity
{
///
/// 主键
///
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 用户ID
///
[SugarColumn(ColumnName = "F_UserId")]
public string UserId { get; set; }
///
/// 赠送人
///
[SugarColumn(ColumnName = "F_GiveUserId")]
public string GiveUserId { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "F_Remark")]
public string Remark { get; set; }
///
/// 类型 1--未使用 2--已使用
///
[SugarColumn(ColumnName = "F_Type")]
public string Type { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "F_CreatorTime")]
public DateTime? CreatorTime { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "F_LastModifyTime")]
public DateTime? LastModifyTime { get; set; }
///
/// 标题
///
[SugarColumn(ColumnName = "F_Title")]
public string Title { get; set; }
///
/// 订单ID
///
[SugarColumn(ColumnName = "F_OrderId")]
public string OrderId { get; set; }
}
}