You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.9 KiB
C#
138 lines
3.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Estsh.Web.Dal;
|
|
using Estsh.Web.Util;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
|
|
namespace Estsh.Core.Services
|
|
{
|
|
public class TestDataService
|
|
{
|
|
TestDataDal dal = new TestDataDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
|
|
/// <summary>
|
|
/// 获取二排电检测信息
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetSNCurrentData(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetSNCurrentData(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 电检主表
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetDjc(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetDjc(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 电检明细表
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetDjcDeatil(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetDjcDeatil(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="aWhere"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetSumDjc(string aWhere)
|
|
{
|
|
return dal.GetSumDjc(aWhere);
|
|
}
|
|
|
|
public DataTable GetSumDjcDeatil(string aWhere)
|
|
{
|
|
return dal.GetSumDjcDeatil(aWhere);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 二排推动力
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetImpetus(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetImpetus(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 前排SBR及视觉影像
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetSBR(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetSBR(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 前排推拉力
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetFrontImpetus(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetFrontImpetus(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 前排静音房
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetFrontRoom(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetFrontRoom(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// QE电检测
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetRSBR(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetRSBR(whereStr, pager, ref totalCount);
|
|
}
|
|
}
|
|
|
|
|
|
}
|