123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- using YiSha.Util.Model;
- using System.Data.Common;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- using YiSha.Entity.TK;
- using YiSha.Model.Param.TK;
- namespace YiSha.IService.TK
- {
-
-
-
-
-
- public partial interface IImageManagerModelsService
- {
- #region 获取数据
-
-
-
-
-
- Task<List<ImageManagerModelsEntity>> GetList(ImageManagerModelsListParam param);
-
-
-
-
-
-
- Task<List<ImageManagerModelsEntity>> GetPageList(ImageManagerModelsListParam param, Pagination pagination);
-
-
-
-
-
-
-
-
-
- Task<List<ImageManagerModelsEntity>> GetListColumn(string column, string where, List<DbParameter> parameters, string groupBy = "", string sort = "basecreatetime", string sortType = "desc");
-
-
-
-
-
- Task<ImageManagerModelsEntity> GetEntity(int id);
- #endregion
- #region 提交数据
-
-
-
-
-
- Task SaveForm(ImageManagerModelsEntity entity);
-
-
-
-
-
- Task<int> InsertMany(List<ImageManagerModelsEntity> list);
-
-
-
-
-
-
- Task<int> DeleteFormById(string ids, bool del = false);
-
-
-
-
-
-
-
- Task<int> DeleteFormByWhere(string where, List<DbParameter> parameters, bool del = false);
-
-
-
-
-
- Task<int> UpdateMany(List<ImageManagerModelsEntity> list);
-
-
-
-
-
-
-
- Task<int> UpdateFormByWhere(string setField, string where, List<DbParameter> parameters);
- #endregion
- #region 私有方法
-
-
-
-
-
-
-
- #endregion
- }
- }
|