package com.landtool.lanbase.modules.res.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_TempPrint; @Mapper public interface Res_TempPrintMapper { Res_TempPrint selectByPrimaryKey(int objectid); List getList(Res_TempPrint resTempPrint); int queryResTempPrintIdentCurrent(); int deleteByPrimaryKey(int objectid); int insert(Res_TempPrint resTempPrint); int insertSelective(Res_TempPrint resTempPrint); int updateByPrimaryKeySelective(Res_TempPrint resTempPrint); int updateByPrimaryKey(Res_TempPrint resTempPrint); }