wxw
2025-05-12 c7c2f7aa20427204944ba80a2704232b2f281582
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.BllSoDto;
 
namespace WMS.IBLL.IBllSoServer
{
    public interface IExportNoticeDetailServer
    {
        /// <summary>
        /// 查询出库总单信息
        /// </summary> 
        /// <param name="soNo">出库单号</param>
        /// <param name="page"></param>
        /// <param name="limit"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        List<ExportNoticeDetailDto> GetExportNoticeDetailList(string soNo, int page, int limit, out int count);
 
        /// <summary>
        /// 删除出库单明细
        /// </summary>
        /// <param name="id">明细Id</param>
        /// <param name="userId">操作人</param>
        /// <returns></returns>
        bool DelExportNoticeDetail(int id,int userId);
    }
}