package com.landtool.lanbase.modules.res.service; import java.util.List; import com.landtool.lanbase.modules.res.entity.Res_BookMarks; public interface ResBookMarksService { Res_BookMarks getById(Integer objectid); List getBookMarksByUserid(Integer userid); int insert(Res_BookMarks res_bookMarks); int updateByPrimaryKey(Res_BookMarks res_bookMarks); int deleteByPrimaryKey(Integer objectid); int getCurrentObjectId(); }