审查视图

src/main/java/com/sy/mapper/RESMESSAGEMapper.java 628 字节
zhangFan authored
1 2 3 4 5 6
package com.sy.mapper;

import com.sy.model.RESMESSAGE;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
朱兆平 authored
7 8
import java.util.List;
zhangFan authored
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
@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);
朱兆平 authored
24 25 26

    List<RESMESSAGE> selectByManifestList(String[] manifest);
}