| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using Core.Mes.Client.Comm.Tool;
- using Core.StlMes.Client.Judge.Commons;
- using Core.StlMes.Client.Judge.Models;
- using Core.StlMes.Client.Judge.ViewModels;
- using CoreFS.CA06;
- using System.Collections.Generic;
- namespace Core.StlMes.Client.Judge.BLLs
- {
- /// <summary>
- /// 数据库表QCM_ZG_PHYRESULT所对应的BLL类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
- /// 作者:tgcx-test 时间:2016-10-09
- /// </summary>
- public class QcmZgPhyresultBLL
- {
- private OpeBase _ob;
- public QcmZgPhyresultBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询
- /// </summary>
- public List<QcmZgPhyResultCtrlEntity> Query(string stoveNo, JudgeType judgeType)
- {
- List<QcmZgPhyResultCtrlEntity> qcmZgPhyresultEntity = EntityHelper.GetData<QcmZgPhyResultCtrlEntity>(
- "com.steering.pss.judge.DAL.QcmZgPhyresultDAL.Query", new object[] { stoveNo, (int)judgeType }, _ob);
- return qcmZgPhyresultEntity;
- }
- /// <summary>
- /// 通过主键查询
- /// </summary>
- public List<QcmZgPhyresultEntity> QueryByPk(string PhyResultId, string PhyResultSeq)
- {
- List<QcmZgPhyresultEntity> qcmZgPhyresultEntity = EntityHelper.GetData<QcmZgPhyresultEntity>(
- "com.steering.pss.judge.DAL.QcmZgPhyresultDAL.QueryByPk", new object[] { PhyResultId, PhyResultSeq }, _ob);
- return qcmZgPhyresultEntity;
- }
- }
- }
|