wanshenmean
2026-03-26 e25dc0d8fad5a2362bf75cf5ca9f26a0fe6c674c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IOutboundService
{
    /// <summary>
    /// 出库单服务接口
    /// </summary>
    public interface IOutboundOrderService : IService<Dt_OutboundOrder>
    {
        /// <summary>
        /// 获取出库单仓储接口
        /// </summary>
        IRepository<Dt_OutboundOrder> Repository { get; }
    }
}