66 lines
1.3 KiB
C#
66 lines
1.3 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PDDCircleFriends
|
|||
|
{
|
|||
|
public class Enums
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 拼多多类目枚举
|
|||
|
/// </summary>
|
|||
|
public enum CategoryType
|
|||
|
{
|
|||
|
精选 = 0,
|
|||
|
百货 = 15,
|
|||
|
母婴 = 4,
|
|||
|
服饰 = 14,
|
|||
|
美食 = 1,
|
|||
|
美妆 = 16,
|
|||
|
内衣 = 1282,
|
|||
|
鞋包 = 1281,
|
|||
|
男装 = 743,
|
|||
|
手机 = 1543,
|
|||
|
文具 = 2478,
|
|||
|
电器 = 18,
|
|||
|
家纺 = 818,
|
|||
|
运动 = 1451,
|
|||
|
家装 = 1917,
|
|||
|
汽车 = 2048,
|
|||
|
水果 = 13
|
|||
|
}
|
|||
|
|
|||
|
public enum ShopScoreType
|
|||
|
{
|
|||
|
不限 = 0,
|
|||
|
五点零 = 1,
|
|||
|
四点九 = 2,
|
|||
|
四点八 = 3,
|
|||
|
四点七 = 4,
|
|||
|
四点六 = 5
|
|||
|
}
|
|||
|
|
|||
|
public enum GoodsSourceType
|
|||
|
{
|
|||
|
文件导入 = 0,
|
|||
|
接口采集 = 1,
|
|||
|
对象 = 2
|
|||
|
}
|
|||
|
|
|||
|
public enum StateType
|
|||
|
{
|
|||
|
已推广 = 0,
|
|||
|
未推广 = 1
|
|||
|
}
|
|||
|
|
|||
|
public enum TransmitStyleType
|
|||
|
{
|
|||
|
仅转发原文 = 1,
|
|||
|
原文及评论 = 2
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|