You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
561 B
24 lines
561 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.BLL;
|
|
using QMAPP.FJC.Entity.Basic;
|
|
using QMAPP.FJC.DAL.Basic;
|
|
|
|
namespace QMAPP.FJC.BLL.Basic
|
|
{
|
|
/// <summary>
|
|
/// 获取打印模板路径逻辑操作类
|
|
/// </summary>
|
|
public class PrintModelCopyBLL : BaseBLL
|
|
{
|
|
public List<PrintModelCopy> GetPrintModelCopyList(string printFlag)
|
|
{
|
|
List<PrintModelCopy> list = new PrintModelCopyDAL().GetPrintModelCopyList(printFlag);
|
|
|
|
return list;
|
|
|
|
}
|
|
}
|
|
}
|
|
|