| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_IInboundService |
| | | { |
| | | /// <summary> |
| | | /// 入库单明细服务接口 |
| | | /// </summary> |
| | | public interface IInboundOrderDetailService : IService<Dt_InboundOrderDetail> |
| | | { |
| | | /// <summary> |
| | | /// 获取入库单明细仓储接口 |
| | | /// </summary> |
| | | IRepository<Dt_InboundOrderDetail> Repository { get; } |
| | | } |
| | | } |