using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Base_Town { #region base /// /// 获取分页列表 /// /// /// /// TableModel GetPageList(int pageIndex, int pageSize); /// /// 获取单个 /// /// /// T_Base_Town Get(string guid); /// /// 添加 /// /// /// bool Add(T_Base_Town town); /// /// 编辑 /// /// /// bool Update(T_Base_Town town); /// /// 批量删除 /// /// /// bool Dels(dynamic[] guids); #endregion /// /// 获取列表-无分页 /// /// TableModel GetList(); /// /// 获取当前辖区下的镇/街道 /// /// 县级代码 /// TableModel GetListByCountyCode(string countyCode); } }