京东慧眼
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Coldairarrow.Entity.DTO
{
public class ItemLabelDto
{
public string ItemId { get; set; }
public string Title { get; set; }
public decimal Price { get; set; }
public string Sales { get; set; }
public string Img { get; set; }
/// <summary>
/// 标签状态
/// </summary>
public ItemLabelStatus Status { get; set; }
/// <summary>
/// 平台
/// </summary>
public ItemPlatform Platform { get; set; }
}
/// <summary>
/// 平台类型
/// </summary>
public enum ItemPlatform
{
/// <summary>
/// 淘宝
/// </summary>
Taobao = 0,
/// <summary>
/// 京东
/// </summary>
Jd = 1,
/// <summary>
/// 阿里巴巴
/// </summary>
ALBB = 2
}
/// <summary>
/// 标签状态
/// </summary>
public enum ItemLabelStatus
{
/// <summary>
/// 筛选
/// </summary>
Screening=0,
/// <summary>
/// 过滤
/// </summary>
Filter =1,
/// <summary>
/// 添加产品库
/// </summary>
Added=2,
/// <summary>
/// 竞品
/// </summary>
Competing=3,
/// <summary>
/// 合作
/// </summary>
Cooperation=4
}
}