1234567891011121314151617181920212223242526272829 |
- using Dto;
- using Vo;
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- namespace Services
- {
- public interface ISysDictItemService : IBaseService<SysDictItem>
- {
-
-
-
-
-
- PagedInfo<SysDictItemListVo> List([FromQuery] SysDictItemListDto parm);
- }
- }
|