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 SlmOrdDesignMscCftBLL
{
private OpeBase _ob;
public SlmOrdDesignMscCftBLL(OpeBase ob)
{
_ob = ob;
}
///
/// 查询质量设计工艺参数
///
///
///
public List Query(SlmOrdDesignMscCftEntity designMscCftEntity)
{
List designMscCftEntityList = EntityHelper.GetData(
"com.steering.pss.sale.order.DAL.SlmOrdDesignMscCftDAL.query", new object[] { JSONFormat.Format(designMscCftEntity) }, _ob);
return designMscCftEntityList;
}
///
/// 通过DESIGN_KEY查询质量设计工艺参数
///
///
///
public List QueryCraftByDesignKey(SlmOrdDesignMscCftEntity designMscCftEntity)
{
List designMscCftEntityList = EntityHelper.GetData(
"com.steering.pss.sale.order.DAL.SlmOrdDesignMscCftDAL.queryCraftByDesignKey", new object[] { JSONFormat.Format(designMscCftEntity) }, _ob);
return designMscCftEntityList;
}
}
}