| 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 SlmOrdDesignMscPlStiBLL
- {
- private OpeBase _ob;
- public SlmOrdDesignMscPlStiBLL(OpeBase ob)
- {
- this._ob = ob;
- }
-
- /// <summary>
- /// 查询工序点
- /// </summary>
- /// <param name="designMscPlStiEntity"></param>
- /// <returns></returns>
- public List<SlmOrdDesignMscPlStiEntity> Query(SlmOrdDesignMscPlStiEntity designMscPlStiEntity)
- {
- List<SlmOrdDesignMscPlStiEntity> designMscPlStiEntityList = EntityHelper.GetData<SlmOrdDesignMscPlStiEntity>(
- "com.steering.pss.sale.order.DAL.SlmOrdDesignMscPlStiDAL.query", new object[] { JSONFormat.Format(designMscPlStiEntity) }, _ob);
- return designMscPlStiEntityList;
- }
- }
- }
|