123456789101112131415161718192021222324252627282930 |
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- using Vo.Admin;
- namespace Services
- {
- public interface IPriLoopSetService : IBaseService<PriLoopSet>
- {
-
-
-
-
-
-
- PagedInfo<GetPriLoopSetListVo> getPriLoopSetList([FromQuery] PagerInfo page, [FromQuery] PriLoopSet param);
-
-
-
-
-
- PagedInfo<GetPriLoopSetDicVo> getPriLoopSetDic([FromQuery] PagerInfo page);
- }
- }
|