12345678910111213141516171819202122232425262728293031323334 |
- using YiSha.Util.Model;
- using System.Data.Common;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- using YiSha.Entity.ZX;
- using YiSha.Model.Param.ZX;
- using YiSha.Model.Result.ZX;
- namespace YiSha.IService.ZX
- {
-
-
-
-
-
- public partial interface ISlideShowModelsService
- {
-
-
-
-
-
-
- Task<List<SlideShowModelsPageJoinModel>> GetPageListPartial(SlideShowModelsListParam param, Pagination pagination);
-
-
-
-
-
- Task<int> SaveFormPartial(SlideShowModelsEntity entity);
- }
- }
|