Administrator
2024-01-31 4782a054880ca72f761468da28357cdf1606aa0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;
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<BllLabelBoxNo> GetLabelBoxList(LabelBoxVm model, out int count);
    }
}