using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class User
{
public uint Id { get; set; }
///
/// 微信openid
///
public string Openid { get; set; } = null!;
///
/// 手机号
///
public string? Mobile { get; set; }
///
/// 昵称
///
public string Nickname { get; set; } = null!;
///
/// 头像
///
public string Headimg { get; set; } = null!;
///
/// 父级id
///
public uint Pid { get; set; }
///
/// 余额
///
public decimal Money { get; set; }
///
/// 集市余额
///
public decimal? Money2 { get; set; }
///
/// 幸运币
///
public decimal Integral { get; set; }
///
/// 积分
///
public decimal Score { get; set; }
///
/// 欧气值
///
public uint? OuQi { get; set; }
///
/// 欧气值等级
///
public uint? OuQiLevel { get; set; }
///
/// vip等级
///
public byte Vip { get; set; }
///
/// 分享海报
///
public string? ShareImage { get; set; }
///
/// 状态:1正常,2禁用
///
public bool? Status { get; set; }
///
/// 添加时间
///
public uint Addtime { get; set; }
///
/// 修改时间
///
public uint UpdateTime { get; set; }
///
/// 最后操作时间
///
public uint LastLoginTime { get; set; }
///
/// 优惠券的数量
///
public int? DrawNum { get; set; }
///
/// 0未领取1已领取
///
public sbyte? IsUseCoupon { get; set; }
///
/// 连击赏秘宝池抽奖次数
///
public uint? MbNumber { get; set; }
public int? ClickId { get; set; }
///
/// 用户唯一id
///
public string? Unionid { get; set; }
///
/// 公众号openid
///
public string? GzhOpenid { get; set; }
public string? Password { get; set; }
///
/// 是否测试账号
///
public int Istest { get; set; }
///
/// 唯一编号
///
public string Uid { get; set; } = null!;
}