12345678910111213141516171819 |
- using Attribute;
- using Model;
- using Model.Base;
- using Repository;
- using Service;
- using Microsoft.AspNetCore.Mvc;
- namespace Services
- {
- /// <summary>
- /// 快闪刷商户在网达标Service业务层处理
- /// </summary>
- [AppService(ServiceType = typeof(IKssStageRwdService), ServiceLifetime = LifeTime.Transient)]
- public class KssStageRwdService : BaseService<KssStageRwd>, IKssStageRwdService
- {
- }
- }
|