| 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 SlmOrdDesignMscCftRGzBLL
- {
- private OpeBase _ob;
- public SlmOrdDesignMscCftRGzBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询质量设计工艺参数与钢种关系
- /// </summary>
- /// <param name="designMscCftRGzEntity"></param>
- /// <returns></returns>
- public List<SlmOrdDesignMscCftRGzEntity> Query(SlmOrdDesignMscCftRGzEntity designMscCftRGzEntity)
- {
- List<SlmOrdDesignMscCftRGzEntity> designMscCftRGzEntityList = EntityHelper.GetData<SlmOrdDesignMscCftRGzEntity>(
- "com.steering.pss.sale.order.DAL.SlmOrdDesignMscCftRGzDAL.query", new object[] { JSONFormat.Format(designMscCftRGzEntity) }, _ob);
- return designMscCftRGzEntityList;
- }
- }
- }
|