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 SlmOrdDesignStdGicBLL { private OpeBase _ob; public SlmOrdDesignStdGicBLL(OpeBase ob) { _ob = ob; } /// /// 查询质量设计加工 /// /// /// public List Query(SlmOrdDesignStdGicEntity designStdGicEntity) { List designStdGicEntityList = EntityHelper.GetData( "com.steering.pss.sale.order.DAL.SlmOrdDesignStdGicDAL.query", new object[] { JSONFormat.Format(designStdGicEntity) }, _ob); return designStdGicEntityList; } /// /// 通过DESIGN_KEY查询质量设计加工 /// /// /// public List QueryGicByDesignKey(SlmOrdDesignStdGicEntity designStdGicEntity) { List designStdGicEntityList = EntityHelper.GetData( "com.steering.pss.sale.order.DAL.SlmOrdDesignStdGicDAL.queryGicByDesignKey", new object[] { JSONFormat.Format(designStdGicEntity) }, _ob); return designStdGicEntityList; } } }