using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Base_City
{
#region base
///
/// 获取分页列表
///
/// 起始页
/// 每页条数
///
TableModel GetPageList(int pageIndex, int pageSize);
///
/// 获取单个
///
/// 主键
///
T_Base_City Get(string guid);
///
/// 添加
///
///
///
bool Add(T_Base_City city);
///
/// 编辑
///
///
///
bool Update(T_Base_City city);
///
/// 批量删除
///
///
///
bool Dels(dynamic[] guids);
#endregion
///
/// 获取列表-无分页
///
/// 所属省份代码
///
TableModel GetList(string provinceCode);
///
/// 获取当前辖区下的市
///
/// 起始页
/// 每页大小
/// 所属省份代码
/// 关键词
///
TableModel GetPageListByProvinceCode(int pageIndex, int pageSize, string provinceCode, string keyWord);
}
}