MerchantRecordService.cs 431 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(IMerchantRecordService), ServiceLifetime = LifeTime.Transient)]
  13. public class MerchantRecordService : BaseService<MerchantRecord>, IMerchantRecordService
  14. {
  15. }
  16. }