.NETAdmin/ZR.Service/Social/SocialFansInfoService.cs
2025-07-29 19:15:56 +08:00

12 lines
331 B
C#

using Infrastructure.Attribute;
using ZR.Model.social;
using ZR.Service.Social.IService;
namespace ZR.Service.Social
{
[AppService(ServiceType = typeof(ISocialFansInfoService), ServiceLifetime = LifeTime.Transient)]
public class SocialFansInfoService : BaseService<SocialFansInfo>, ISocialFansInfoService
{
}
}