forked from github/dataease
30 lines
963 B
Java
30 lines
963 B
Java
package io.dataease.base.mapper;
|
|
|
|
import io.dataease.base.domain.SysMsgChannel;
|
|
import io.dataease.base.domain.SysMsgChannelExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface SysMsgChannelMapper {
|
|
long countByExample(SysMsgChannelExample example);
|
|
|
|
int deleteByExample(SysMsgChannelExample example);
|
|
|
|
int deleteByPrimaryKey(Long msgChannelId);
|
|
|
|
int insert(SysMsgChannel record);
|
|
|
|
int insertSelective(SysMsgChannel record);
|
|
|
|
List<SysMsgChannel> selectByExample(SysMsgChannelExample example);
|
|
|
|
SysMsgChannel selectByPrimaryKey(Long msgChannelId);
|
|
|
|
int updateByExampleSelective(@Param("record") SysMsgChannel record, @Param("example") SysMsgChannelExample example);
|
|
|
|
int updateByExample(@Param("record") SysMsgChannel record, @Param("example") SysMsgChannelExample example);
|
|
|
|
int updateByPrimaryKeySelective(SysMsgChannel record);
|
|
|
|
int updateByPrimaryKey(SysMsgChannel record);
|
|
} |