Administrator
2024-01-31 7b8df9666698422eaa24c780b9e91bb7905282bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.BllAsnDto;
using Model.ModelVm.BllAsnVm;
using WMS.Entity.BllAsnEntity;
 
namespace WMS.IBLL.IBllAsnServer
{
    public interface IBllLabelBoxNoServer
    {
        /// <summary>
        /// 获取标签箱码信息
        /// </summary>
        /// <param name="model">查询条件</param>
        /// <param name="count">数量</param>
        /// <returns>标签箱码信息</returns>
        List<LabelBoxDto> GetLabelBoxList(LabelBoxVm model, out int count);
    }
}