| | |
| | | using System.Linq.Expressions; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.Enums; |
| | | |
| | | namespace WIDESEA_Core.BaseRepository |
| | | { |
| | |
| | | |
| | | Task<bool> DeleteDataByIdAsync(object id); |
| | | |
| | | bool DeleteAndMoveIntoHty(TEntity entity, OperateTypeEnum operateType); |
| | | |
| | | bool DeleteAndMoveIntoHty(List<TEntity> entities, OperateTypeEnum operateType); |
| | | |
| | | /// <summary> |
| | | /// éè¿ä¸»é®æ°æ®å é¤å¤æ¡æ°æ® |
| | | /// </summary> |
| | |
| | | bool UpdateDataNav(TEntity Entity); |
| | | |
| | | /// <summary> |
| | | /// å¯¼èªæ´æ°æ°æ®(åªæ¯æ2级) |
| | | /// </summary> |
| | | /// <param name="Entity"></param> |
| | | /// <returns></returns> |
| | | bool UpdateDataNav(List<TEntity> Entity); |
| | | |
| | | /// <summary> |
| | | /// æå®åæ´æ°æ°æ® |
| | | /// </summary> |
| | | /// <param name="entity"></param> |