123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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 INewManagerModelService
- {
-
-
-
-
-
-
- Task<List<NewManagerModelPageJoinModel>> GetPageListPartial(NewManagerModelListParam param, Pagination pagination);
-
-
-
-
-
-
- Task<List<NewContentPublishNumberPageJoinModel>> GetPublishNumberPageListJson(NewContentPublishNumberListParam param, Pagination pagination);
-
-
-
-
-
- Task<int> SaveFormPartial(NewManagerModelEntity entity);
- }
- }
|