PageUpdateInfoService.cs 467 B

1234567891011121314151617181920212223
  1. using Attribute;
  2. using Dto;
  3. using Vo;
  4. using Model;
  5. using Model.Base;
  6. using Repository;
  7. using Service;
  8. using Microsoft.AspNetCore.Mvc;
  9. namespace Services.Client
  10. {
  11. /// <summary>
  12. /// 页面模板更新信息Service业务层处理
  13. /// </summary>
  14. [AppService(ServiceType = typeof(IPageUpdateInfoService), ServiceLifetime = LifeTime.Transient)]
  15. public class PageUpdateInfoService : BaseService<PageUpdateInfo>, IPageUpdateInfoService
  16. {
  17. }
  18. }