87 lines
2.1 KiB
C#
87 lines
2.1 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Api.EmotionManage.EmoticonDatas
|
|
{
|
|
/// <summary>
|
|
/// 表情包展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-29
|
|
/// </summary>
|
|
public class EmoticonDataVoApi
|
|
{
|
|
|
|
|
|
/// <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))]
|
|
[EpplusTableColumn(Header = "分类guid")]
|
|
public long EmoticonCategoryGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :名称
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public string EmoticonDataName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :图片
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "图片")]
|
|
public string EmoticonDataImg { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "排序")]
|
|
public int EmoticonDataSort { get; set; }
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 表情包详情展示对象Api
|
|
/// </summary>
|
|
public class EmoticonDataApiDetailsVo
|
|
{
|
|
[EpplusIgnore]
|
|
public int EmoticonDataId { get; set; }
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[EpplusIgnore]
|
|
public long EmoticonDataGuid { get; set; }
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[EpplusTableColumn(Header = "分类guid")]
|
|
public long EmoticonCategoryGuid { get; set; }
|
|
[EpplusIgnore]
|
|
public string EmoticonDataName { get; set; }
|
|
[EpplusTableColumn(Header = "图片")]
|
|
public string EmoticonDataImg { get; set; }
|
|
[EpplusTableColumn(Header = "排序")]
|
|
public int EmoticonDataSort { get; set; }
|
|
|
|
}
|
|
|
|
}
|