37 lines
1.3 KiB
Java
37 lines
1.3 KiB
Java
package io.dataease.base.mapper;
|
|
|
|
import io.dataease.base.domain.PanelTemplate;
|
|
import io.dataease.base.domain.PanelTemplateExample;
|
|
import io.dataease.base.domain.PanelTemplateWithBLOBs;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface PanelTemplateMapper {
|
|
long countByExample(PanelTemplateExample example);
|
|
|
|
int deleteByExample(PanelTemplateExample example);
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
int insert(PanelTemplateWithBLOBs record);
|
|
|
|
int insertSelective(PanelTemplateWithBLOBs record);
|
|
|
|
List<PanelTemplateWithBLOBs> selectByExampleWithBLOBs(PanelTemplateExample example);
|
|
|
|
List<PanelTemplate> selectByExample(PanelTemplateExample example);
|
|
|
|
PanelTemplateWithBLOBs selectByPrimaryKey(String id);
|
|
|
|
int updateByExampleSelective(@Param("record") PanelTemplateWithBLOBs record, @Param("example") PanelTemplateExample example);
|
|
|
|
int updateByExampleWithBLOBs(@Param("record") PanelTemplateWithBLOBs record, @Param("example") PanelTemplateExample example);
|
|
|
|
int updateByExample(@Param("record") PanelTemplate record, @Param("example") PanelTemplateExample example);
|
|
|
|
int updateByPrimaryKeySelective(PanelTemplateWithBLOBs record);
|
|
|
|
int updateByPrimaryKeyWithBLOBs(PanelTemplateWithBLOBs record);
|
|
|
|
int updateByPrimaryKey(PanelTemplate record);
|
|
} |