old_flsystem/应用/Weixin.JDCirclePromotion/Enums.cs

93 lines
2.7 KiB
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Weixin.JDCirclePromotion
{
public class Enums
{
/// <summary>
/// 京东类目枚举
/// </summary>
public enum CategoryType
{
/*
ID:1-,2-,10-9.9,15-,22-,23-,24-,25-,26-,27-,28-穿,30-,31-,32-,33-,34-,40-,41-,109-,110-,112-,125-,129-,130-,153-
*/
//--------新的
= 1,
= 2,
= 10,
= 15,
= 22,
= 23,
= 24,
= 25,
= 26,
= 27,
穿 = 28,
= 30,
= 31,
= 32,
= 33,
= 34,
= 40,
= 41,
}
/// <summary>
/// 排序字段
/// </summary>
public enum OrderFieldType
{
//price单价, commissionShare佣金比例, commission佣金 inOrderCount30DaysSkusku维度30天引单量comments评论数goodComments好评数
= 1,
= 2,
= 3,
= 4,
= 5,
= 6
}
/// <summary>
/// 排序字段
/// </summary>
public enum _OrderFieldType
{
//price单价, commissionShare佣金比例, commission佣金 inOrderCount30DaysSkusku维度30天引单量comments评论数goodComments好评数
price = 1,
commissionShare = 2,
commission = 3,
inOrderCount30DaysSku = 4,
comments = 5,
goodComments = 6
}
/// <summary>
/// 排序
/// </summary>
public enum SortType
{
//asc,desc升降序,默认降序
= 1,
= 2
}
public enum GoodsSourceType
{
= 0,
= 1,
= 2
}
public enum StateType
{
广 = 0,
广 = 1
}
}
}