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.
51 lines
988 B
51 lines
988 B
4 years ago
|
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 int 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>
|
||
|
Pdd = 2
|
||
|
}
|
||
|
}
|