using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Base_PostCode { #region base /// /// 获取分页列表 /// /// /// /// TableModel GetPageList(int pageIndex, int pageSize); /// /// 获取单个 /// /// /// T_Base_PostCode Get(string guid); /// /// 添加 /// /// /// bool Add(T_Base_PostCode postCode); /// /// 编辑 /// /// /// bool Update(T_Base_PostCode postCode); /// /// 批量删除 /// /// /// bool Dels(dynamic[] guids); #endregion /// /// 获取列表-无分页 /// /// TableModel GetList(); } }