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.
|
|
|
|
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;
|
|
|
|
|
using Estsh.Web.Models;
|
|
|
|
|
using ApServerProvider;
|
|
|
|
|
|
|
|
|
|
/***************************************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* 作者:王勇
|
|
|
|
|
*
|
|
|
|
|
* *************************************************************************************************/
|
|
|
|
|
namespace Estsh.Core.Services
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 菜单业务处理类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class XTShipDefineService
|
|
|
|
|
{
|
|
|
|
|
private XTShipDefineDal dal = new XTShipDefineDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 根据分页条件获取分页菜单数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="XTShipDefineName"></param>
|
|
|
|
|
/// <param name="pager"></param>
|
|
|
|
|
/// <param name="direction"></param>
|
|
|
|
|
/// <param name="sort"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
public DataTable XTShipDefineListByPage(string aWhere, Pager pager, ref int totalCount)
|
|
|
|
|
{
|
|
|
|
|
return dal.XTShipDefineListByPage(aWhere, pager, ref totalCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配置集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>数据集</returns>
|
|
|
|
|
public ArrayList GetModelName()
|
|
|
|
|
{
|
|
|
|
|
return dal.GetModelName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|