using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public enum Discovery
{
///
/// 推荐
///
[Description("推荐")]
recommend = 0,
///
/// 最新
///
[Description("最新")]
latest = 1,
///
/// 热门
///
[Description("热门")]
dynamic =2
}
}