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; } /// /// 标签状态 /// public int Status { get; set; } /// /// 平台 /// public ItemPlatform Platform { get; set; } } /// /// 平台类型 /// public enum ItemPlatform { /// /// 淘宝 /// Taobao = 0, /// /// 京东 /// Jd = 1, /// /// 拼多多 /// Pdd = 2 } }