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