using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 用户钱包
///
public class UserWallet : CommonEntity
{
///
/// 用户信息Id
///
public Guid UserId { get; set; }
///
/// 用户信息
///
public User User { get; set; }
///
/// 余额
///
public decimal Balance { get; set; }
}
}