12345678910111213141516171819202122 |
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- using Vo.Admin;
- namespace Services
- {
- public interface IPriConditionService : IBaseService<PriCondition>
- {
-
-
-
-
-
-
- PagedInfo<GetPriConditionListVo> getPriConditionList([FromQuery] PagerInfo page, [FromQuery] PriCondition param);
- }
- }
|