123456789101112131415161718192021222324252627282930 |
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- using Vo.Admin;
- namespace Services
- {
- public interface IPriRecursionStartTableService : IBaseService<PriRecursionStartTable>
- {
-
-
-
-
-
-
- PagedInfo<GetPriRecursionStartTableListVo> getPriRecursionStartTableList([FromQuery] PagerInfo page, [FromQuery] PriRecursionStartTable param);
-
-
-
-
-
- PagedInfo<GetPriRecursionStartTableDicVo> getPriRecursionStartTableDic([FromQuery] PagerInfo page);
- }
- }
|