using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 富文本资料数据类型
///
public enum TextInfoDataType
{
///
/// 商品
///
[Description("商品")]
Goods = 1,
///
/// 服务
///
[Description("服务")]
Service = 2,
///
/// 组合商品
///
[Description("组合商品")]
GoodsSet = 3
}
///
/// 富文本资料信息类型
///
public enum TextInfoInfoType
{
///
/// 详情
///
[Description("详情")]
Detail = 1,
///
/// 质检报告/服务步骤
///
[Description("质检报告/服务步骤")]
ReportOrService = 2
}
}