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.
83 lines
2.4 KiB
C#
83 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Estsh.Web.Util;
|
|
using System.Data;
|
|
using Estsh.Web.Dal;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services
|
|
{
|
|
public class PDLineStandbyQueryService
|
|
{
|
|
private PDLineStandbyQueryDal dal = new PDLineStandbyQueryDal(RemotingProxyProvider._remotingProxy);
|
|
/// <summary>
|
|
/// 获得产线
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetPdLine()
|
|
{
|
|
return dal.GetPdLine();
|
|
}
|
|
/// <summary>
|
|
/// 获得总成类型
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetSeatType()
|
|
{
|
|
return dal.GetSeatType();
|
|
}
|
|
/// <summary>
|
|
/// 获得停线时间类型
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetStandbyTimeType()
|
|
{
|
|
return dal.GetStandbyTimeType();
|
|
}
|
|
/// <summary>
|
|
/// 获得状态类型
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetStatusType()
|
|
{
|
|
return dal.GetStatusType();
|
|
}
|
|
/// <summary>
|
|
/// 获得最小停线时间列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetTimeLowLimit()
|
|
{
|
|
return dal.GetTimeLowLimit();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获得班别
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetShiftData()
|
|
{
|
|
return dal.GetShiftData();
|
|
}
|
|
/// <summary>
|
|
/// 获得部门
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Hashtable GetDeptInfo()
|
|
{
|
|
return dal.GetDeptInfo();
|
|
}
|
|
|
|
public DataTable GetStandbyInfo(ref Pager page, string pdLineId, string seatType, string shiftName, string status, string deptName, string standbyLowLimit, string standbyTimeType, string startTime, string endTime)
|
|
{
|
|
return dal.GetStandbyInfo(ref page, pdLineId, seatType, shiftName, status, deptName, standbyLowLimit, standbyTimeType, startTime, endTime);
|
|
}
|
|
public bool UpdatdStandbyInfo(int ruid, string reason, string deptName, string action, string status)
|
|
{
|
|
return dal.UpdatdStandbyInfo(ruid, reason, deptName, action, status);
|
|
}
|
|
}
|
|
}
|