using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 企业钱包记账本状态
///
public enum EnumEnterpriseWalletAccountBookStatus
{
///
/// 正常
///
Normal = 100,
///
/// 异常
///
Exception = 999
}
}