KssBindService.cs 406 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. /// 快闪刷商户绑定Service业务层处理
  11. /// </summary>
  12. [AppService(ServiceType = typeof(IKssBindService), ServiceLifetime = LifeTime.Transient)]
  13. public class KssBindService : BaseService<KssBind>, IKssBindService
  14. {
  15. }
  16. }