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 CraftOrdDesignMscPlStiBLL { private OpeBase _ob; public CraftOrdDesignMscPlStiBLL(OpeBase ob) { this._ob = ob; } /// /// 查询工序点 /// /// /// public List Query(CraftOrdDesignMscPlStiEntity designMscPlStiEntity) { List designMscPlStiEntityList = EntityHelper.GetData( "com.steering.pss.sale.order.DAL.CraftOrdDesignMscPlStiDAL.query", new object[] { JSONFormat.Format(designMscPlStiEntity) }, _ob); return designMscPlStiEntityList; } } }