12 lines
339 B
C#
12 lines
339 B
C#
using Infrastructure.Attribute;
|
|
using ZR.Model.System;
|
|
using ZR.Service;
|
|
using ZR.ServiceCore.Services.IService;
|
|
|
|
namespace ZR.ServiceCore.Services;
|
|
|
|
[AppService(ServiceType = typeof(ISysNoticeLogService), ServiceLifetime = LifeTime.Transient)]
|
|
public class SysNoticeLogService : BaseService<SysNoticeLog>, ISysNoticeLogService
|
|
{
|
|
|
|
} |