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 { /// /// 连铸实时数据管理类 /// public class LgCcmAllRtdMgt { private Core.LgMes.Client.lgServiceMgt.RtdDal.CcmDAL.CcmAllDAL ccmAllDal = new Core.LgMes.Client.lgServiceMgt.RtdDal.CcmDAL.CcmAllDAL(); /// /// 返回rtd_pointccm3no1 数据集 /// /// /// public DataSet GetRtdPointCcm3No1(ClientParamWithSqlConditionAndOpenBase param) { return ccmAllDal.GetRtdPointCcm3No1(param); } /// /// 返回rtd_pointccm2no1 数据集 /// /// /// public DataSet GetRtdPointCcm2No1(ClientParamWithSqlConditionAndOpenBase param) { return ccmAllDal.GetRtdPointCcm2No1(param); } /// /// 返回rtd_pointccm1no1 数据集 /// /// /// public DataSet GetRtdPointCcm1No1(ClientParamWithSqlConditionAndOpenBase param) { return ccmAllDal.GetRtdPointCcm1No1(param); } /// /// 返回RTD_POINTCCM1NO1 实体 /// /// /// public RTD_POINTCCM1NO1 GetRtdPointCcm1No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param) { return RTD_POINTCCM1NO1.GetRtdPointCcm1No1(this.GetRtdPointCcm1No1(param)); } /// /// 返回RTD_POINTCCM2NO1 实体 /// /// /// public RTD_POINTCCM2NO1 GetRtdPointCcm2No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param) { return RTD_POINTCCM2NO1.GetRtdPointCcm2No1(this.GetRtdPointCcm2No1(param)); } /// /// 返回RTD_POINTCCM3NO1 实体 /// /// /// public RTD_POINTCCM3NO1 GetRtdPointCcm3No1ByEntryModel(ClientParamWithSqlConditionAndOpenBase param) { return RTD_POINTCCM3NO1.GetRtdPointCcm3No1(this.GetRtdPointCcm3No1(param)); } } }