123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- 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;
- namespace YiSha.IService.ZX
- {
-
-
-
-
-
- public partial interface ILabelModelsService
- {
- #region 获取数据
-
-
-
-
-
- Task<List<LabelModelsEntity>> GetList(LabelModelsListParam param);
-
-
-
-
-
-
- Task<List<LabelModelsEntity>> GetPageList(LabelModelsListParam param, Pagination pagination);
-
-
-
-
-
-
-
-
-
- Task<List<LabelModelsEntity>> GetListColumn(string column, string where, List<DbParameter> parameters, string groupBy = "", string sort = "basecreatetime", string sortType = "desc");
-
-
-
-
-
- Task<LabelModelsEntity> GetEntity(int id);
- #endregion
- #region 提交数据
-
-
-
-
-
- Task SaveForm(LabelModelsEntity entity);
-
-
-
-
-
- Task<int> InsertMany(List<LabelModelsEntity> list);
-
-
-
-
-
-
- Task<int> DeleteFormById(string ids, bool del = false);
-
-
-
-
-
-
-
- Task<int> DeleteFormByWhere(string where, List<DbParameter> parameters, bool del = false);
-
-
-
-
-
- Task<int> UpdateMany(List<LabelModelsEntity> list);
-
-
-
-
-
-
-
- Task<int> UpdateFormByWhere(string setField, string where, List<DbParameter> parameters);
- #endregion
- #region 私有方法
-
-
-
-
-
-
-
- #endregion
- }
- }
|