| 12345678910111213141516171819202122 |
- using Core.Mes.Client.Comm.Format;
- using Core.Mes.Client.Comm.Tool;
- using CoreFS.CA06;
- using System.Collections.Generic;
- namespace Core.StlMes.Client.Qcm.BLL
- {
- public class ComPscBLL
- {
- private OpeBase ob;
- public ComPscBLL(OpeBase ob)
- {
- this.ob = ob;
- }
- public List<PscEntity> QueryPscDesc(PscEntity comPsc)
- {
- return EntityHelper.GetData<PscEntity>("com.steering.pss.qcm.DAL.ComPscDAL.queryPscDesc",
- new object[] { JSONFormat.Format(comPsc) }, ob);
- }
- }
- }
|