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