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.
78 lines
1.9 KiB
C#
78 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Estsh.Web.Util;
|
|
using Estsh.Web.Dal;
|
|
using System.Data;
|
|
using System.Collections;
|
|
namespace Estsh.BLL
|
|
{
|
|
public class YYReWorkQueryService
|
|
{
|
|
YYReWorkQueryDal dal = new YYReWorkQueryDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
/// <summary>
|
|
/// 一次通过率
|
|
/// </summary>
|
|
/// <param name="pager"></param>
|
|
/// <returns></returns>
|
|
public DataTable YYReWorkData(string aWhere, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.YYReWorkData(aWhere, pager, ref totalCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 不良率
|
|
/// </summary>
|
|
/// <param name="pager"></param>
|
|
/// <returns></returns>
|
|
public DataTable YYReWorkDataDeatil(string aWhere, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.YYReWorkDataDeatil(aWhere, pager, ref totalCount);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 区段集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetStageName()
|
|
{
|
|
return dal.GetStageName();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 不良类型集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetDefectName(string stageName)
|
|
{
|
|
return dal.GetDefectName(stageName);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
///车型集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetTypeName()
|
|
{
|
|
return dal.GetTypeName();
|
|
}
|
|
/// <summary>
|
|
/// 配置集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetModelList(string typeName)
|
|
{
|
|
return dal.GetModelList(typeName);
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|