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