RESMESSAGEMapper.java
540 字节
package com.sy.mapper;
import com.sy.model.RESMESSAGE;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@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);
}