using Nirvana.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.Entity
{
///
/// 订单类型
///
public enum OrderType
{
///
/// 公众号
///
[EnumTitle("公众号")]
Office = 1,
///
/// 链接
///
[EnumTitle("链接")]
URL = 2,
///
/// 小程序
///
[EnumTitle("小程序")]
Mini = 3
}
///
/// 订单绑定用途类型
///
public enum OrderBindType
{
///
/// 设备管理
///
[EnumTitle("设备管理")]
DevMag = 1,
///
/// 用户测量
///
[EnumTitle("用户测量")]
UserMea = 2,
///
/// 用户绑定
///
[EnumTitle("用户绑定")]
UserBind = 3
}
///
/// 公众号类型
///
public enum OfficeType
{
///
/// 认证的服务号
///
[EnumTitle("认证的服务号")]
RZFW = 1,
///
/// 非认证
///
[EnumTitle("非认证")]
FRZ = 2,
///
/// 个人号
///
[EnumTitle("个人")]
GR = 3,
///
/// 小程序
///
[EnumTitle("小程序")]
MINI = 4
}
///
/// 订单状态
///
public enum OrderStatus
{
///
/// 正常
///
[EnumTitle("正常")]
Run = 1,
///
/// 待开启
///
[EnumTitle("待开启")]
Pause = 2,
///
/// 已完成
///
[EnumTitle("已完成")]
Success = 3,
///
/// 已取消
///
[EnumTitle("已取消")]
Cancel = 4
}
}