¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_IBasicRepository |
| | | { |
| | | public interface IAreaInfoRepository : IRepository<Dt_AreaInfo> |
| | | { |
| | | /// <summary> |
| | | /// å¯ç¨çåºå主é®éå |
| | | /// </summary> |
| | | public List<int> EnableAreaIds { get; } |
| | | |
| | | /// <summary> |
| | | /// ä»åºéé¢å¯å¨çåºå主é®éå |
| | | /// </summary> |
| | | /// <param name="enableWarehouseIds">ä»åºä¸»é®éå</param> |
| | | /// <returns></returns> |
| | | List<int> GetEnableAreaIds(List<int> enableWarehouseIds); |
| | | } |
| | | } |