ZrAdminNetCore/ZR.Service/System/ArticleService.cs
不做码农 40026f596f 测试
2021-09-27 08:06:09 +08:00

16 lines
328 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 : IArticleService
{
}
}