dataease-dm/backend/src/main/java/io/dataease/base/mapper/SysMsgChannelMapper.java
2021-07-09 18:37:07 +08:00

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);
}