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 CraftOrdDesignMscJgPlStiBLL
{
private OpeBase _ob;
public CraftOrdDesignMscJgPlStiBLL(OpeBase ob)
{
_ob = ob;
}
///
/// 查询接箍工序
///
///
///
public List Query(CraftOrdDesignMscJgPlStiEntity designMscJgPlStiEntity)
{
List designMscJgPlStiEntityList = EntityHelper.GetData(
"com.steering.pss.sale.order.DAL.CraftOrdDesignMscJgPlStiDAL.query", new object[] { JSONFormat.Format(designMscJgPlStiEntity) }, _ob);
return designMscJgPlStiEntityList;
}
}
}