| 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 CraftOrdDesignMscJgPlStiBLL
- {
- private OpeBase _ob;
- public CraftOrdDesignMscJgPlStiBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询接箍工序
- /// </summary>
- /// <param name="designMscJgPlStiEntity"></param>
- /// <returns></returns>
- public List<CraftOrdDesignMscJgPlStiEntity> Query(CraftOrdDesignMscJgPlStiEntity designMscJgPlStiEntity)
- {
- List<CraftOrdDesignMscJgPlStiEntity> designMscJgPlStiEntityList = EntityHelper.GetData<CraftOrdDesignMscJgPlStiEntity>(
- "com.steering.pss.sale.order.DAL.CraftOrdDesignMscJgPlStiDAL.query", new object[] { JSONFormat.Format(designMscJgPlStiEntity) }, _ob);
- return designMscJgPlStiEntityList;
- }
- }
- }
|