yl
2025-11-19 4718d79b98b135e9f07c0c201386a50f3c131171
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using VueWebCoreApi.DLL.DAL;
using VueWebCoreApi.Models;
using VueWebCoreApi.Tools;
 
namespace VueWebCoreApi.DLL.BLL
{
    public class AppProductBLL
    {
        #region[App已派发工单的物料]
        public static ToMessage DistrInventory(User us)
        {
            return AppProductDAL.DistrInventory(us);
        }
        #endregion
 
        #region[App查看单据及工艺信息]
        public static ToMessage ProductOrderSearch(User us, string ordertype,string ordercode, string partcode, string startopendate, string endclosedate)
        {
            return AppProductDAL.ProductOrderSearch(us, ordertype, ordercode, partcode, startopendate, endclosedate);
        }
        #endregion
    }
}