KqActivateCallBackService.cs 451 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(IKqActivateCallBackService), ServiceLifetime = LifeTime.Transient)]
  13. public class KqActivateCallBackService : BaseService<KqActivateCallBack>, IKqActivateCallBackService
  14. {
  15. }
  16. }