54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Data.Linq;
|
|
using System.Web.Security;
|
|
using System.Web.UI.WebControls;
|
|
using Model;
|
|
using BLL;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BLL
|
|
{
|
|
public static class Common_ReportPrintService
|
|
{
|
|
/// <summary>
|
|
/// 菜单项
|
|
/// </summary>
|
|
public class ReportList
|
|
{
|
|
/// <summary>
|
|
/// 报表ID
|
|
/// </summary>
|
|
public string ReportId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
/// <summary>
|
|
/// 报表名称
|
|
/// </summary>
|
|
public string ReportName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 焊接报表下拉框
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static List<ReportList> PrintReport()
|
|
{
|
|
List<ReportList> lis = new List<ReportList>();
|
|
|
|
ReportList list1=new ReportList();
|
|
return lis;
|
|
}
|
|
}
|
|
}
|