using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 企业钱包
///
public class EnterpriseWallet : CommonEntity
{
///
/// 企业Id
///
public Guid EnterpriseId { get; set; }
///
/// 企业
///
public Enterprise Enterprise { get; set; }
///
/// 通道
///
public EnumEnterpriseWalletAccess Access { get; set; }
}
}