| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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 Core.StlMes.Client.SaleOrder;
- using CoreFS.CA06;
- namespace Core.StlMes.Client.SaleOrder.BLL
- {
- public class SlmOrdDesignMscBLL
- {
- private OpeBase _ob;
- public SlmOrdDesignMscBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询质量设计MSC
- /// </summary>
- /// <param name="designMscEntity"></param>
- /// <returns></returns>
- public List<SlmOrdDesignMscEntity> Query(SlmOrdDesignMscEntity designMscEntity)
- {
- List<SlmOrdDesignMscEntity> designMscEntityList = EntityHelper.GetData<SlmOrdDesignMscEntity>(
- "com.steering.pss.sale.order.DAL.SlmOrdDesignMscDAL.query", new object[] { JSONFormat.Format(designMscEntity) }, _ob);
- return designMscEntityList;
- }
- /// <summary>
- /// 通过DESIGN_KEY查询质量设计MSC
- /// </summary>
- /// <param name="designMscEntity"></param>
- /// <returns></returns>
- public List<SlmOrdDesignMscEntity> QueryMscByDesignKey(SlmOrdDesignMscEntity designMscEntity)
- {
- List<SlmOrdDesignMscEntity> designMscEntityList = EntityHelper.GetData<SlmOrdDesignMscEntity>(
- "com.steering.pss.sale.order.DAL.SlmOrdDesignMscDAL.queryMscByDesignKey", new object[] { JSONFormat.Format(designMscEntity) }, _ob);
- return designMscEntityList;
- }
- }
- }
|