dataease-dm/backend/src/main/java/io/dataease/base/mapper/PanelSubjectMapper.java
2021-05-07 19:20:47 +08:00

36 lines
1.2 KiB
Java

package io.dataease.base.mapper;
import io.dataease.base.domain.PanelSubject;
import io.dataease.base.domain.PanelSubjectExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface PanelSubjectMapper {
long countByExample(PanelSubjectExample example);
int deleteByExample(PanelSubjectExample example);
int deleteByPrimaryKey(String id);
int insert(PanelSubject record);
int insertSelective(PanelSubject record);
List<PanelSubject> selectByExampleWithBLOBs(PanelSubjectExample example);
List<PanelSubject> selectByExample(PanelSubjectExample example);
PanelSubject selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") PanelSubject record, @Param("example") PanelSubjectExample example);
int updateByExampleWithBLOBs(@Param("record") PanelSubject record, @Param("example") PanelSubjectExample example);
int updateByExample(@Param("record") PanelSubject record, @Param("example") PanelSubjectExample example);
int updateByPrimaryKeySelective(PanelSubject record);
int updateByPrimaryKeyWithBLOBs(PanelSubject record);
int updateByPrimaryKey(PanelSubject record);
}