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