LogicNodeService.cs 411 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(ILogicNodeService), ServiceLifetime = LifeTime.Transient)]
  13. public class LogicNodeService : BaseService<LogicNode>, ILogicNodeService
  14. {
  15. }
  16. }