using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Business.EmotionManage.EmoticonDatas
{
///
/// 表情包展示对象
///
/// @author lwh
/// @date 2023-10-28
///
public class EmoticonDataVo
{
///
/// 描述 :
///
[EpplusIgnore]
public int EmoticonDataId { get; set; }
///
/// 描述 :
///
[JsonConverter(typeof(ValueToStringConverter))]
[EpplusIgnore]
public long EmoticonDataGuid { get; set; }
///
/// 描述 :分类guid
///
[JsonConverter(typeof(ValueToStringConverter))]
[EpplusIgnore]
public long EmoticonCategoryGuid { get; set; }
///
/// 描述 : 分类名称
///
[EpplusTableColumn(Header = "表情包分类名称")]
public string EmoticonCategoryName { get; set; }
///
/// 描述 :名称
///
[EpplusTableColumn(Header = "表情包名称")]
public string EmoticonDataName { get; set; }
///
/// 描述 :图片
///
[EpplusTableColumn(Header = "表情包图片")]
public string EmoticonDataImg { get; set; }
///
/// 描述 :排序
///
[EpplusTableColumn(Header = "表情包排序")]
public int EmoticonDataSort { get; set; }
}
}