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.Data;
| using System.Linq;
| using System.Web;
| using VueWebApi.DLL.DAL;
| using VueWebApi.Tools;
|
| namespace VueWebApi.DLL.BLL
| {
| public class GridReportBLL
| {
| #region[MES工单打印]
| public static ToMessage MesOrderPrintSearch(string username, string mesordercode)
| {
| return GridReportDAL.MesOrderPrintSearch(username,mesordercode);
| }
| #endregion
|
| #region[FastReport打印]
| public static PrintMessage MesOrderFastReportPrintSearch(string username, string mesordercode)
| {
| return GridReportDAL.MesOrderFastReportPrintSearch(username, mesordercode);
| }
| #endregion
| }
| }
|
|