package com.simple.service; import java.util.*; import com.github.pagehelper.PageInfo; import com.simple.domain.po.WxEtcpParkUnbind; public interface WxEtcpParkUnbindService { /** * 根据实体查询分页列表 * * @param record * @param offset * @param limit * @return */ PageInfo listAsPage(WxEtcpParkUnbind record, Integer pageIndex, Integer pageSize); /** * 根据Id获得实体 * * @param id * @return */ WxEtcpParkUnbind getById(Long id); /** * 保存或更新实体 * * @param record */ void saveOrUpdate(WxEtcpParkUnbind record); /** * 根据Id删除实体 * * @param id */ void deleteById(Long id); }