| 12345678910111213141516171819202122232425262728293031 |
- 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 CraftOrdDesignMscBlBLL
- {
- private OpeBase _ob;
- public CraftOrdDesignMscBlBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询质量设计备料
- /// </summary>
- /// <param name="designMscBlEntity"></param>
- /// <returns></returns>
- public List<CraftOrdDesignMscBlEntity> Query(CraftOrdDesignMscBlEntity designMscBlEntity)
- {
- List<CraftOrdDesignMscBlEntity> designMscBlEntityList = EntityHelper.GetData<CraftOrdDesignMscBlEntity>(
- "com.steering.pss.sale.order.DAL.CraftOrdDesignMscBlDAL.query", new object[] { JSONFormat.Format(designMscBlEntity) }, _ob);
- return designMscBlEntityList;
- }
- }
- }
|