package com.sy.mapper; import com.sy.model.RESMESSAGE; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; import java.util.List; @Component public interface RESMESSAGEMapper { int deleteByPrimaryKey(String id); int insert(RESMESSAGE record); int insertSelective(RESMESSAGE record); RESMESSAGE selectByPrimaryKey(String id); int updateByPrimaryKeySelective(RESMESSAGE record); int updateByPrimaryKey(RESMESSAGE record); RESMESSAGE selectByManifest(@Param("manifest") String manifest); List<RESMESSAGE> selectByManifestList(String[] manifest); }