using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.EmotionManage.EmoticonDatas; namespace ARW.Model.Dto.Business.EmotionManage.EmoticonDatas { /// /// 表情包输入对象 /// /// @author lwh /// @date 2023-10-28 /// 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; } } /// /// 表情包查询对象 /// /// @author lwh /// @date 2023-10-28 /// public class EmoticonDataQueryDto : PagerInfo { public long? EmoticonCategoryGuid { get; set; } public string EmoticonDataName { get; set; } public string ids { get; set; } } }