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