天津投入产出系统后端
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.

43 lines
934 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>
/// 加工参数配置表
/// 作者:闫永刚
/// 日期:2015-6-1
/// </summary>
public class ParameterConfigBLL : BaseBLL
{
/// <summary>
/// 获取所有的加工参数配置信息
/// </summary>
/// <returns></returns>
public List<ParameterConfig> GetList(ParameterConfig condition)
{
try
{
List<ParameterConfig> list = new List<ParameterConfig>();
list = new ParameterConfigDAL().GetList(condition);
return list;
}
catch (Exception ex)
{
throw ex;
}
}
}
}