shgx_tz_mom/ZR.Service/System/ArticleService.cs

17 lines
393 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using Infrastructure.Attribute;
2021-11-27 09:43:04 +08:00
using SqlSugar;
2021-08-23 16:57:25 +08:00
using ZR.Model.System;
2021-11-27 09:43:04 +08:00
using ZR.Repository.System;
2021-09-16 19:35:17 +08:00
using ZR.Service.System.IService;
2021-08-23 16:57:25 +08:00
namespace ZR.Service.System
{
/// <summary>
///
/// </summary>
[AppService(ServiceType = typeof(IArticleService), ServiceLifetime = LifeTime.Transient)]
public class ArticleService : BaseService<Article>, IArticleService
{
}
}