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 CraftOrdDesignMscJgPlBLL { private OpeBase _ob; public CraftOrdDesignMscJgPlBLL(OpeBase ob) { _ob = ob; } /// /// 查询接箍制程 /// /// /// public List Query(CraftOrdDesignMscJgPlEntity designMscJgPlEntity) { List designMscJgPlEntityList = EntityHelper.GetData( "com.steering.pss.sale.order.DAL.CraftOrdDesignMscJgPlDAL.query", new object[] { JSONFormat.Format(designMscJgPlEntity) }, _ob); return designMscJgPlEntityList; } } }