59 lines
1.2 KiB
C#
59 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.EmotionManage.EmoticonDatas;
|
|
|
|
namespace ARW.Model.Dto.Business.EmotionManage.EmoticonDatas
|
|
{
|
|
/// <summary>
|
|
/// 表情包输入对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-28
|
|
/// </summary>
|
|
public class EmoticonDataDto
|
|
{
|
|
|
|
public int EmoticonDataId { get; set; }
|
|
|
|
public long EmoticonDataGuid { get; set; }
|
|
|
|
[Required(ErrorMessage = "分类guid不能为空")]
|
|
public long EmoticonCategoryGuid { get; set; }
|
|
|
|
public string EmoticonDataName { get; set; }
|
|
|
|
[Required(ErrorMessage = "图片不能为空")]
|
|
public string EmoticonDataImg { get; set; }
|
|
|
|
[Required(ErrorMessage = "排序不能为空")]
|
|
public int EmoticonDataSort { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 表情包查询对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-28
|
|
/// </summary>
|
|
public class EmoticonDataQueryDto : PagerInfo
|
|
{
|
|
|
|
public long? EmoticonCategoryGuid { get; set; }
|
|
|
|
public string EmoticonDataName { get; set; }
|
|
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|