20 lines
508 B
C#
20 lines
508 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.EmotionManage.EmoticonDatas;
|
|
|
|
namespace ARW.Repository.Business.EmotionManage.EmoticonDatas
|
|
{
|
|
/// <summary>
|
|
/// 表情包仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-28
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class EmoticonDataRepository : BaseRepository<EmoticonData>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |