using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Format;
using Core.Mes.Client.Comm.Tool;
using CoreFS.CA06;
namespace Core.StlMes.Client.SaleOrder.BLL
{
public class CraftOrdDesignMscCftRGzBLL
{
private OpeBase _ob;
public CraftOrdDesignMscCftRGzBLL(OpeBase ob)
{
_ob = ob;
}
///
/// 查询质量设计工艺参数与钢种关系
///
///
///
public List Query(CraftOrdDesignMscCftRGzEntity designMscCftRGzEntity)
{
List designMscCftRGzEntityList = EntityHelper.GetData(
"com.steering.pss.sale.order.DAL.CraftOrdDesignMscCftRGzDAL.query", new object[] { JSONFormat.Format(designMscCftRGzEntity) }, _ob);
return designMscCftRGzEntityList;
}
}
}