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