using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 用户信息状态
///
public enum EnumUserStatus
{
///
/// 正常
///
Normal = 10,
///
/// 禁用
///
Disabled = 100,
}
}