22 lines
440 B
C#
22 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.EntityTmp.SuNing
|
|
{
|
|
/// <summary>
|
|
/// 苏宁类目枚举
|
|
/// </summary>
|
|
public enum CategoryType
|
|
{
|
|
小编推荐 = 1,
|
|
实时热销榜 = 2,
|
|
当日热推榜 = 3,
|
|
高佣爆款榜 = 4,
|
|
团长招商榜 = 5,
|
|
九块九专区 = 6
|
|
}
|
|
}
|