| 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 CraftOrdDesignMscBLL
- {
- private OpeBase _ob;
- public CraftOrdDesignMscBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询质量设计MSC
- /// </summary>
- /// <param name="designMscEntity"></param>
- /// <returns></returns>
- public List<CraftOrdDesignMscEntity> Query(CraftOrdDesignMscEntity designMscEntity)
- {
- List<CraftOrdDesignMscEntity> designMscEntityList = EntityHelper.GetData<CraftOrdDesignMscEntity>(
- "com.steering.pss.sale.order.DAL.CraftOrdDesignMscDAL.query", new object[] { JSONFormat.Format(designMscEntity) }, _ob);
- return designMscEntityList;
- }
- /// <summary>
- /// 通过DESIGN_KEY查询质量设计MSC
- /// </summary>
- /// <param name="designMscEntity"></param>
- /// <returns></returns>
- public List<CraftOrdDesignMscEntity> QueryMscByDesignKey(CraftOrdDesignMscEntity designMscEntity)
- {
- List<CraftOrdDesignMscEntity> designMscEntityList = EntityHelper.GetData<CraftOrdDesignMscEntity>(
- "com.steering.pss.sale.order.DAL.CraftOrdDesignMscDAL.queryMscByDesignKey", new object[] { JSONFormat.Format(designMscEntity) }, _ob);
- return designMscEntityList;
- }
- }
- }
|