using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL.Inquiry
{
///
/// 绳子类型管理接口
///
public interface ISysInquiry_RopeTypeDAL : ICommonDAL
{
///
/// 分页返回绳子类型列表
///
/// 绳子类型名称
/// 分页参数
///
IEnumerable SelectModelPage(string typeName, string status, Infrastructure.Query.Pagination pagination);
///
/// 根据主键返回绳子类型实体
///
/// 主键ID
/// 绳子类型
Model.SysInquiry_RopeType SelectModelByKey(int keyid);
///
/// 获取最新排序顺序
///
///
int GetOrderNumByMax();
///
/// 获取有效的绳子类型列表
///
///
IList GetModelList();
///
/// 判断是否存在相同的数据
///
///
///
bool IsExist(string ropeTypeName);
}
}