KqActivateService.cs 419 B

12345678910111213141516171819
  1. using Attribute;
  2. using Model;
  3. using Model.Base;
  4. using Repository;
  5. using Service;
  6. using Microsoft.AspNetCore.Mvc;
  7. namespace Services
  8. {
  9. /// <summary>
  10. /// 快钱MPOS激活抓取Service业务层处理
  11. /// </summary>
  12. [AppService(ServiceType = typeof(IKqActivateService), ServiceLifetime = LifeTime.Transient)]
  13. public class KqActivateService : BaseService<KqActivate>, IKqActivateService
  14. {
  15. }
  16. }