CUSTOM_RESPONSEMapper.java 581 字节
package com.tianbo.messagebus.dao;


import com.tianbo.messagebus.model.CUSTOM_RESPONSE;

import java.util.List;

public interface CUSTOM_RESPONSEMapper {
    int deleteByPrimaryKey(String id);

    int insert(CUSTOM_RESPONSE record);

    int insertSelective(CUSTOM_RESPONSE record);

    CUSTOM_RESPONSE selectByPrimaryKey(String id);

    List<CUSTOM_RESPONSE> selectByCustomMsgId(String cusmsgid);

    int updateByPrimaryKeySelective(CUSTOM_RESPONSE record);

    int updateByPrimaryKeyWithBLOBs(CUSTOM_RESPONSE record);

    int updateByPrimaryKey(CUSTOM_RESPONSE record);
}