using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Collections; using Estsh.Web.Util; using Estsh.Web.Dal; using System.Data; /*************************************************************************************************** * * 作者:贾文涛 * 创建时间:2014.07.08 * 描述:目视单打印模块业务处理类 * 修改日志: * * *************************************************************************************************/ namespace Estsh.Core.Services { /// /// 目视单打印模块管理业务处理类 /// public class InspPrintService { private InspPrintDal dal = new InspPrintDal(RemotingProxyProvider._remotingProxy); #region 目视单打印 /// /// 根据分页条件获取列表 /// /// /// /// /// /// public Hashtable getJitListByPage(Hashtable requestHt, Pager pager, String direction, String sort,Boolean type) { Hashtable result = new Hashtable(); result = dal.getJitListByPage(requestHt, type); return result; } /// /// 更新打印数据 /// /// /// public int updatePrintData(String ids) { ids = ids.Substring(1); return this.dal.updatePrintData(ids); } #endregion } }