dataease-dm/backend/src/main/java/io/dataease/base/mapper/PanelShareMapper.java
2021-03-16 16:59:49 +08:00

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