| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using CoreFS.CA06;
- using System.Data;
- using System.Collections;
- using Core.Mes.Client.Common;
- using Core.LgMes.Client.lgServiceMgt;
- using Core.LgMes.Client.lgClassModel.Rtd.Ccm;
- namespace Core.LgMes.Client.lgBll.LgRtdMgt.Ccm
- {
- /// <summary>
- /// 连铸实时数据管理类
- /// </summary>
- public class LgCcmAllRtdMgt
- {
- private Core.LgMes.Client.lgServiceMgt.RtdDal.CcmDAL.CcmAllDAL ccmAllDal = new Core.LgMes.Client.lgServiceMgt.RtdDal.CcmDAL.CcmAllDAL();
- /// <summary>
- /// 返回rtd_pointccm3no1 数据集
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet GetRtdPointCcm3No1(ClientParamWithSqlConditionAndOpenBase param)
- {
- return ccmAllDal.GetRtdPointCcm3No1(param);
- }
- /// <summary>
- /// 返回rtd_pointccm2no1 数据集
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet GetRtdPointCcm2No1(ClientParamWithSqlConditionAndOpenBase param)
- {
- return ccmAllDal.GetRtdPointCcm2No1(param);
- }
- /// <summary>
- /// 返回rtd_pointccm1no1 数据集
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet GetRtdPointCcm1No1(ClientParamWithSqlConditionAndOpenBase param)
- {
- return ccmAllDal.GetRtdPointCcm1No1(param);
- }
- /// <summary>
- /// 返回RTD_POINTCCM1NO1 实体
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public RTD_POINTCCM1NO1 GetRtdPointCcm1No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param)
- {
- return RTD_POINTCCM1NO1.GetRtdPointCcm1No1(this.GetRtdPointCcm1No1(param));
- }
- /// <summary>
- /// 返回RTD_POINTCCM2NO1 实体
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public RTD_POINTCCM2NO1 GetRtdPointCcm2No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param)
- {
- return RTD_POINTCCM2NO1.GetRtdPointCcm2No1(this.GetRtdPointCcm2No1(param));
- }
- /// <summary>
- /// 返回RTD_POINTCCM3NO1 实体
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public RTD_POINTCCM3NO1 GetRtdPointCcm3No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param)
- {
- return RTD_POINTCCM3NO1.GetRtdPointCcm3No1(this.GetRtdPointCcm3No1(param));
- }
- }
- }
|