2021-03-08 14:31:09 +08:00
|
|
|
package io.dataease.base.mapper;
|
|
|
|
|
|
|
|
import io.dataease.base.domain.PanelGroup;
|
|
|
|
import io.dataease.base.domain.PanelGroupExample;
|
2021-03-29 14:57:04 +08:00
|
|
|
import io.dataease.base.domain.PanelGroupWithBLOBs;
|
2021-03-08 14:31:09 +08:00
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
public interface PanelGroupMapper {
|
|
|
|
long countByExample(PanelGroupExample example);
|
|
|
|
|
|
|
|
int deleteByExample(PanelGroupExample example);
|
|
|
|
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
|
2021-03-29 14:57:04 +08:00
|
|
|
int insert(PanelGroupWithBLOBs record);
|
2021-03-08 14:31:09 +08:00
|
|
|
|
2021-03-29 14:57:04 +08:00
|
|
|
int insertSelective(PanelGroupWithBLOBs record);
|
|
|
|
|
|
|
|
List<PanelGroupWithBLOBs> selectByExampleWithBLOBs(PanelGroupExample example);
|
2021-03-08 14:31:09 +08:00
|
|
|
|
|
|
|
List<PanelGroup> selectByExample(PanelGroupExample example);
|
|
|
|
|
2021-03-29 14:57:04 +08:00
|
|
|
PanelGroupWithBLOBs selectByPrimaryKey(String id);
|
|
|
|
|
|
|
|
int updateByExampleSelective(@Param("record") PanelGroupWithBLOBs record, @Param("example") PanelGroupExample example);
|
2021-03-08 14:31:09 +08:00
|
|
|
|
2021-03-29 14:57:04 +08:00
|
|
|
int updateByExampleWithBLOBs(@Param("record") PanelGroupWithBLOBs record, @Param("example") PanelGroupExample example);
|
2021-03-08 14:31:09 +08:00
|
|
|
|
|
|
|
int updateByExample(@Param("record") PanelGroup record, @Param("example") PanelGroupExample example);
|
|
|
|
|
2021-03-29 14:57:04 +08:00
|
|
|
int updateByPrimaryKeySelective(PanelGroupWithBLOBs record);
|
|
|
|
|
|
|
|
int updateByPrimaryKeyWithBLOBs(PanelGroupWithBLOBs record);
|
2021-03-08 14:31:09 +08:00
|
|
|
|
|
|
|
int updateByPrimaryKey(PanelGroup record);
|
|
|
|
}
|