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