ZrAdminNetCore/ZR.Service/System/ArticleService.cs
2022-11-15 18:37:15 +08:00

15 lines
349 B
C#

using Infrastructure.Attribute;
using ZR.Model.System;
using ZR.Service.System.IService;
namespace ZR.Service.System
{
/// <summary>
///
/// </summary>
[AppService(ServiceType = typeof(IArticleService), ServiceLifetime = LifeTime.Transient)]
public class ArticleService : BaseService<Article>, IArticleService
{
}
}