1234567891011121314151617181920212223 |
- using Attribute;
- using Dto;
- using Vo;
- using Model;
- using Model.Base;
- using Repository;
- using Service;
- using Microsoft.AspNetCore.Mvc;
- namespace Services.Client
- {
- /// <summary>
- /// 页面模板更新信息Service业务层处理
- /// </summary>
- [AppService(ServiceType = typeof(IPageUpdateInfoService), ServiceLifetime = LifeTime.Transient)]
- public class PageUpdateInfoService : BaseService<PageUpdateInfo>, IPageUpdateInfoService
- {
- }
- }
|